diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-07-22 09:02:39 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-07-22 23:16:13 +0200 |
commit | 5df343e67f279cb9cd328b0acc8ba8c757a91326 (patch) | |
tree | 6daf84d16f8cc8341c42dc2a3af086da790ad2d2 /debian | |
parent | 4c0cb7f30dc85c19eb564e45643ce048ae69a01b (diff) | |
download | vyos-1x-5df343e67f279cb9cd328b0acc8ba8c757a91326.tar.gz vyos-1x-5df343e67f279cb9cd328b0acc8ba8c757a91326.zip |
ntp: T2185: cleanup deprecated /etc/ntp.conf - now living in /run/ntpd
Diffstat (limited to 'debian')
-rw-r--r-- | debian/vyos-1x.postinst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/vyos-1x.postinst b/debian/vyos-1x.postinst index 2b465d9b4..5c98609a4 100644 --- a/debian/vyos-1x.postinst +++ b/debian/vyos-1x.postinst @@ -90,9 +90,11 @@ fi # conntackd # pmacct # fastnetmon +# ntp DELETE="/etc/logrotate.d/conntrackd.distrib /etc/init.d/conntrackd /etc/default/conntrackd /etc/default/pmacctd /etc/pmacct - /etc/networks_list /etc/networks_whitelist /etc/fastnetmon.conf" + /etc/networks_list /etc/networks_whitelist /etc/fastnetmon.conf + /etc/ntp.conf" for tmp in $DELETE; do if [ -e ${tmp} ]; then rm -rf ${tmp} |