diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-18 08:22:45 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-18 08:22:55 +0200 |
commit | e5e3772eac3a646d2a0dec0cc7437ee9e364a26b (patch) | |
tree | 62215831a1dd9dd4c6d5118e4f84a1b75dec43fa | |
parent | e43dfd675313850b93508a84575515bb3611f1d7 (diff) | |
download | vyos-1x-e5e3772eac3a646d2a0dec0cc7437ee9e364a26b.tar.gz vyos-1x-e5e3772eac3a646d2a0dec0cc7437ee9e364a26b.zip |
import cron.hourly script from vyatta-cfg-system
-rw-r--r-- | debian/vyos-1x.install | 1 | ||||
-rwxr-xr-x | src/etc/cron.hourly/vyos-logrotate-hourly | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/debian/vyos-1x.install b/debian/vyos-1x.install index 0c6c226ee..7d12f3bc1 100644 --- a/debian/vyos-1x.install +++ b/debian/vyos-1x.install @@ -1,3 +1,4 @@ +etc/cron.hourly etc/dhcp etc/ipsec.d etc/netplug diff --git a/src/etc/cron.hourly/vyos-logrotate-hourly b/src/etc/cron.hourly/vyos-logrotate-hourly new file mode 100755 index 000000000..f4f56a9c2 --- /dev/null +++ b/src/etc/cron.hourly/vyos-logrotate-hourly @@ -0,0 +1,4 @@ +#!/bin/sh + +test -x /usr/sbin/logrotate || exit 0 +/usr/sbin/logrotate /etc/logrotate.conf |