diff options
Diffstat (limited to 'abs/core/dcron/dcron.install')
-rw-r--r-- | abs/core/dcron/dcron.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/abs/core/dcron/dcron.install b/abs/core/dcron/dcron.install index fb01dc9..ad5442a 100644 --- a/abs/core/dcron/dcron.install +++ b/abs/core/dcron/dcron.install @@ -8,13 +8,13 @@ post_upgrade() { grep -q cron.tenminutes /var/spool/cron/root if [ $? = 1 ] then - echo "0,10,20,30,40,50 * * * * /usr/sbin/run-cron /etc/cron.tenminutes" >> /var/spool/cron/root + echo "0,10,20,30,40,50 * * * * /usr/bin/run-cron /etc/cron.tenminutes" >> /var/spool/cron/root fi if [ ! -e /etc/cron.tenminutes ] then mkdir -p /etc/cron.tenminutes fi - + sed -i 's|/usr/sbin|/usr/bin|g' /var/spool/cron/root } post_install() { |