diff options
-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 |