aboutsummaryrefslogtreecommitdiff
path: root/rc.shutdown
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-16 12:55:12 +0300
committerCem Keylan <cem@ckyln.com>2020-05-16 12:55:12 +0300
commitc140ff0ad691a34ecf9b46ea471ba6a6fc4dfd32 (patch)
treed183fd2112bc989e26b9d4c36e0a789c60dc975a /rc.shutdown
parent8c876541ee2e9f1240edf9c9a150f7c19dc9cf61 (diff)
downloadinit-c140ff0ad691a34ecf9b46ea471ba6a6fc4dfd32.tar.gz
init: multiple changes
- added a random function for random seed - if svctl exists, kill sysmgr services
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-xrc.shutdown9
1 files changed, 6 insertions, 3 deletions
diff --git a/rc.shutdown b/rc.shutdown
index 2266f21..e2ea347 100755
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -13,11 +13,14 @@ command -v sv >/dev/null &&
sv exit /var/service/* >/dev/null
}
-
-out "Saving random seed..."; {
- dd count=1 bs=512 if=/dev/random of=/var/random.seed
+command -v svctl >/dev/null &&
+ out "Waiting for sysmgr services to stop..."; {
+ svctl kill /var/sysmgr/* 2>/dev/null
}
+# Save random seed
+random save
+
out "Sending TERM signal to all processes..."; {
killall5 -TERM
sleep 1