Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions script/debian-devel
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ teardown() {
# Kill the HTTP server if it's running
if pgrep -f "busybox httpd" > /dev/null; then
header "Stopping the HTTP server..."
pkill -f "busybox httpd"
sudo pkill -f "busybox httpd"
echo "Server stopped."
fi

Expand Down Expand Up @@ -487,7 +487,7 @@ teardown() {
# Kill gpg-agent
if pgrep "^gpg-agent" > /dev/null; then
header "Stopping the GPG agent..."
pkill "^gpg-agent"
sudo pkill "^gpg-agent"
echo "GPG agent stopped."
fi

Expand Down
Loading