mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 20:38:58 +00:00
9 lines
312 B
Bash
Executable File
9 lines
312 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Touch cron files to fix 'NUMBER OF HARD LINKS > 1' issue. See https://github.com/phusion/baseimage-docker/issues/198
|
|
touch -c /var/spool/cron/crontabs/*
|
|
touch -c /etc/crontab
|
|
touch -c /etc/cron.d/* /etc/cron.daily/* /etc/cron.hourly/* /etc/cron.monthly/* /etc/cron.weekly/*
|
|
|
|
exec /usr/sbin/cron -f
|