diff options
author | Bas Ploeger <5904333+basploeger@users.noreply.github.com> | 2022-04-09 23:52:37 +0200 |
---|---|---|
committer | Toyam Cox <aviator45003@gmail.com> | 2023-01-09 13:24:59 -0500 |
commit | 69876b5981557910d05b119c91a492f93016ddf5 (patch) | |
tree | 0a2af0773f2296828be0ffba85d8f46bd54447ed /shutdown.d/70-pkill.sh | |
parent | fa197f0d9e18070b6b28cfdd38f22fbc8cf2f69d (diff) | |
download | runit-void-69876b5981557910d05b119c91a492f93016ddf5.tar.gz runit-void-69876b5981557910d05b119c91a492f93016ddf5.tar.xz runit-void-69876b5981557910d05b119c91a492f93016ddf5.zip |
Split run-level 3 script into separate files.
Diffstat (limited to 'shutdown.d/70-pkill.sh')
-rw-r--r-- | shutdown.d/70-pkill.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shutdown.d/70-pkill.sh b/shutdown.d/70-pkill.sh new file mode 100644 index 0000000..e396cb0 --- /dev/null +++ b/shutdown.d/70-pkill.sh @@ -0,0 +1,5 @@ +msg "Sending TERM signal to processes..." +pkill --inverse -s0,1 -TERM +sleep 1 +msg "Sending KILL signal to processes..." +pkill --inverse -s0,1 -KILL |