011642a708
Removed references to Jobber, replaced with Cron. Created crontab at /etc/cron.d/scrutiny Running cron in foreground. Adding timezone support Working Collector image (untested master).
8 lines
144 B
Plaintext
8 lines
144 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
if [ -n "${TZ}" ]
|
|
then
|
|
ln -snf "/usr/share/zoneinfo/${TZ}" /etc/localtime
|
|
echo "${TZ}" > /etc/timezone
|
|
fi
|