From b8b9c52a05f77b72a9ecfcf7d7759b61fa27bf80 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sat, 16 May 2020 11:53:02 +0300 Subject: init: multiple changes - kill runit services only if sv is available on the system - add run_hook function - add early-boot hook --- rc.shutdown | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'rc.shutdown') diff --git a/rc.shutdown b/rc.shutdown index 0b977f2..2266f21 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -5,16 +5,14 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin -out "Waiting for services to stop..."; { - sv -w196 force-stop /var/service/* >/dev/null 2>&1 - sv exit /var/service/* >/dev/null 2>&1 +run_hook pre.shutdown + +command -v sv >/dev/null && + out "Waiting for runit services to stop..."; { + sv -w196 force-stop /var/service/* >/dev/null + sv exit /var/service/* >/dev/null } -out "Running pre shutdown hooks..." -for file in /etc/init/*.pre.shutdown ; do - [ -f "$file" ] && \ - out "Running $file" && . "$file" -done out "Saving random seed..."; { dd count=1 bs=512 if=/dev/random of=/var/random.seed -- cgit v1.2.3