From 7448b0a31bb899a136157272aa5d9767566ab0cc Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Mon, 13 Jan 2020 20:19:26 +0300 Subject: remove run_hooks function for sinit option parsing --- rc.shutdown | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'rc.shutdown') diff --git a/rc.shutdown b/rc.shutdown index 83b6572..9e6d028 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -10,9 +10,10 @@ out "Waiting for services to stop..."; { sv exit /var/service/* } -out "Running pre shutdown hooks..."; { - run_hooks /etc/init/*.pre.shutdown -} +out "Running pre shutdown hooks..." +for file in /etc/init/*.pre.shutdown ; do + [ -f "$file" ] && . "$file" +done out "Saving random seed..."; { dd count=1 bs=512 if=/dev/random of=/var/random.seed @@ -48,6 +49,7 @@ out "Deactivating dmcrypt devices (if any exist)."; { } } -out "Running post shutdown hooks..."; { - run_hooks /etc/rc.d/*.post.shutdown -} +out "Running post shutdown hooks..."; +for file in /etc/rc.d/*.post.shutdown ; do + [ -f "$file" ] && . "$file" +done -- cgit v1.2.3