7 lines
126 B
Bash
Executable File
7 lines
126 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -o pipefail -o nounset -o errexit
|
|
|
|
echo "${crond_line}" > "/etc/crontabs/root"
|
|
crond -f -L /dev/stdout
|