Redirect stderr from cron
rodzic
67900cd154
commit
65327362ce
|
@ -10,7 +10,7 @@ for cron_user in abc root; do
|
||||||
# if crontabs do not exist in config
|
# if crontabs do not exist in config
|
||||||
if [[ ! -f "/config/crontabs/${cron_user}" ]]; then
|
if [[ ! -f "/config/crontabs/${cron_user}" ]]; then
|
||||||
# copy crontab from system
|
# copy crontab from system
|
||||||
if crontab -l -u "${cron_user}" >/dev/null; then
|
if crontab -l -u "${cron_user}" >/dev/null 2>&1; then
|
||||||
crontab -l -u "${cron_user}" >"/config/crontabs/${cron_user}"
|
crontab -l -u "${cron_user}" >"/config/crontabs/${cron_user}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
|
|
||||||
if builtin command -v crontab >/dev/null && [[ -n "$(crontab -l -u abc)" || -n "$(crontab -l -u root)" ]]; then
|
if builtin command -v crontab >/dev/null 2>&1 && [[ -n "$(crontab -l -u abc)" || -n "$(crontab -l -u root)" ]]; then
|
||||||
if builtin command -v busybox >/dev/null && [[ $(busybox) =~ [[:space:]](crond)([,]|$) ]]; then
|
if builtin command -v busybox >/dev/null 2>&1 && [[ $(busybox) =~ [[:space:]](crond)([,]|$) ]]; then
|
||||||
exec busybox crond -f -S -l 5
|
exec busybox crond -f -S -l 5
|
||||||
elif [[ -f /usr/bin/apt ]] && [[ -f /usr/sbin/cron ]]; then
|
elif [[ -f /usr/bin/apt ]] && [[ -f /usr/sbin/cron ]]; then
|
||||||
exec /usr/sbin/cron -f -L 5
|
exec /usr/sbin/cron -f -L 5
|
||||||
|
|
Ładowanie…
Reference in New Issue