We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8928f3c + b9f08c8 commit aa3a11eCopy full SHA for aa3a11e
root/etc/s6-overlay/s6-rc.d/init-crontab-config/run
@@ -2,6 +2,11 @@
2
# shellcheck shell=bash
3
4
for cron_user in abc root; do
5
+ if [[ -f "/etc/crontabs/${cron_user}" ]]; then
6
+ lsiown "${cron_user}":"${cron_user}" "/etc/crontabs/${cron_user}"
7
+ crontab -u "${cron_user}" "/etc/crontabs/${cron_user}"
8
+ fi
9
+
10
if [[ -f "/defaults/crontabs/${cron_user}" ]]; then
11
# make folders
12
mkdir -p \
0 commit comments