diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-16 13:00:22 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-16 13:00:22 +0300 |
commit | f3508afa135d08fbc15187511815ac67a759db75 (patch) | |
tree | f91b084e1798819c5639c7ecf7492c7de154c9a3 | |
parent | 12bf18ba843cfbc2f332121a366b565088e31fbf (diff) | |
download | init-f3508afa135d08fbc15187511815ac67a759db75.tar.gz |
rc.lib/shutdown: disable shellcheck errors
-rw-r--r-- | rc.lib | 1 | ||||
-rwxr-xr-x | rc.shutdown | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,4 +1,5 @@ # rc.lib -- common functions for rc.boot and rc.shutdown +# shellcheck disable=1090 out() { printf '\033[1;36m-> \033[39m%s\033[m\n' "$@" ;} diff --git a/rc.shutdown b/rc.shutdown index c74bee1..6521383 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -1,4 +1,5 @@ #!/bin/sh +# shellcheck disable=1090,1091 . /etc/init/rc.conf . INITDIR/rc.lib |