7 lines
218 B
Plaintext
7 lines
218 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Touch cron files to fix 'NUMBER OF HARD LINKS > 1' issue. See https://github.com/phusion/baseimage-docker/issues/198
|
||
|
touch -c /etc/crontab /etc/cron.*/* /var/spool/cron/crontabs/*
|
||
|
|
||
|
exec /usr/sbin/cron -f
|