mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-21 15:58:52 +00:00
6 lines
154 B
Bash
Executable File
6 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
pids=$(ps axu | grep -E '(manage.py|log_handler|index.js)' | grep -v 'grep' | awk '{ print $2 }')
|
|
for pid in $pids;do
|
|
kill -15 $pid
|
|
done
|