diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-16 12:57:48 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-16 12:57:48 +0300 |
commit | 388801aaaff3e8e22e94a7ff2b8825c7d7eb9ff5 (patch) | |
tree | 285cfb4d338def073d3012dfdc0de7dbe03c3b05 | |
parent | 782f179d4c65afa531d5087fb541a45facfe0bee (diff) | |
download | init-388801aaaff3e8e22e94a7ff2b8825c7d7eb9ff5.tar.gz |
rc.shutdown: simplify case
-rwxr-xr-x | rc.shutdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.shutdown b/rc.shutdown index 5727c76..51321c7 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -51,4 +51,4 @@ out "Deactivating dmcrypt devices (if any exist)."; { run_hook post.shutdown -case "$1" in reboot) shalt r ;; poweroff) shalt p ;; esac +case "$1" in reboot) shalt r ;; poweroff) shalt p; esac |