Skip to content
Snippets Groups Projects
Commit ca87dd66 authored by Dylan Wheeler's avatar Dylan Wheeler
Browse files

style: uncommenting lines that actually do the work

parent 6f4efa16
No related branches found
No related tags found
1 merge request!159FEAT: adding simple script to kill all of a user's currently running processes
......@@ -40,8 +40,8 @@ userId=$(id -u $username)
if [ "$force" = true ]; then
echo "Performing SIGKILL on processes belonging to $username"
#pkill -9 -u $userId
pkill -9 -u $userId
else
echo "Performing SIGTERM on processes belonging to $username"
#pkill -u $userId
pkill -u $userId
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment