diff options
Diffstat (limited to 'docker/s6')
-rwxr-xr-x | docker/s6/crond/run | 2 | ||||
-rwxr-xr-x | docker/s6/gogs/run | 2 | ||||
-rwxr-xr-x | docker/s6/openssh/run | 2 | ||||
-rwxr-xr-x | docker/s6/syslogd/run | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/docker/s6/crond/run b/docker/s6/crond/run index ada467e1..6232dd26 100755 --- a/docker/s6/crond/run +++ b/docker/s6/crond/run @@ -3,7 +3,7 @@ # The default configuration is also calling all the scripts in /etc/periodic/${period} if test -f ./setup; then - # shellcheck disable=SC2039,SC1091 + # shellcheck disable=SC2039,SC1091,SC3046 source ./setup fi diff --git a/docker/s6/gogs/run b/docker/s6/gogs/run index 72db3f05..eae716e7 100755 --- a/docker/s6/gogs/run +++ b/docker/s6/gogs/run @@ -1,7 +1,7 @@ #!/bin/sh if test -f ./setup; then - # shellcheck disable=SC2039,SC1091 + # shellcheck disable=SC2039,SC1091,SC3046 source ./setup fi diff --git a/docker/s6/openssh/run b/docker/s6/openssh/run index d7a538dd..c293e67b 100755 --- a/docker/s6/openssh/run +++ b/docker/s6/openssh/run @@ -1,7 +1,7 @@ #!/bin/sh if test -f ./setup; then - # shellcheck disable=SC2039,SC1091 + # shellcheck disable=SC2039,SC1091,SC3046 source ./setup fi diff --git a/docker/s6/syslogd/run b/docker/s6/syslogd/run index 5c3bbefb..de605fce 100755 --- a/docker/s6/syslogd/run +++ b/docker/s6/syslogd/run @@ -1,7 +1,7 @@ #!/bin/sh if test -f ./setup; then - # shellcheck disable=SC2039,SC1091 + # shellcheck disable=SC2039,SC1091,SC3046 source ./setup fi |