diff options
author | Tom Grennan <tgrennan@vyatta.com> | 2008-01-23 18:36:12 -0800 |
---|---|---|
committer | Tom Grennan <tgrennan@vyatta.com> | 2008-01-23 18:36:12 -0800 |
commit | 15ab3a8e8beb74f909411b741f392cf957c905b6 (patch) | |
tree | 511735802c73b3f6863e49309e160e4887247ff2 /debian | |
parent | 63701b09b34dfedfe2e7e0515e200a27802cf762 (diff) | |
download | vyatta-cfg-quagga-15ab3a8e8beb74f909411b741f392cf957c905b6.tar.gz vyatta-cfg-quagga-15ab3a8e8beb74f909411b741f392cf957c905b6.zip |
fix /etc/crontab: logrotate
Diffstat (limited to 'debian')
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 0010f52f..00dc0265 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -45,7 +45,7 @@ fi # update crontab for logrotate grep -v logrotate /etc/crontab>/etc/crontab.$$ -echo "*/10 * * * * /usr/sbin/logrotate /etc/logrotate.conf" >> /etc/crontab.$$ +echo "*/10 * * * * root /usr/sbin/logrotate /etc/logrotate.conf" >> /etc/crontab.$$ rm /etc/crontab mv /etc/crontab.$$ /etc/crontab crontab /etc/crontab |