mirror of
https://github.com/linuxserver/docker-swag.git
synced 2025-08-06 05:14:25 -04:00
10 lines
225 B
Text
10 lines
225 B
Text
#!/usr/bin/with-contenv bash
|
|
|
|
# copy crontabs if needed
|
|
if [[ ! -f /config/crontabs/root ]]; then
|
|
cp /etc/crontabs/root /config/crontabs/
|
|
fi
|
|
|
|
# import user crontabs
|
|
rm /etc/crontabs/*
|
|
cp /config/crontabs/* /etc/crontabs/
|