diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-07-21 20:35:19 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-07-21 20:35:19 +0200 |
commit | ef48b2482f3e516c830c04589193377ee8b45a5e (patch) | |
tree | 8301cdb98a236a948ac53a27ea86b051373835eb /debian | |
parent | 902586e248dd84883a097a3daca0b1129db25b38 (diff) | |
download | vyos-1x-ef48b2482f3e516c830c04589193377ee8b45a5e.tar.gz vyos-1x-ef48b2482f3e516c830c04589193377ee8b45a5e.zip |
fastnetmon: T2659: move configuration files to /run
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 da935bd4c..81121bfe9 100644 --- a/debian/vyos-1x.postinst +++ b/debian/vyos-1x.postinst @@ -88,8 +88,10 @@ fi # Remove unwanted daemon files from /etc # conntackd +# pmacct +# fastnetmon DELETE="/etc/logrotate.d/conntrackd.distrib /etc/init.d/conntrackd /etc/default/conntrackd - /etc/default/pmacctd /etc/pmacct" + /etc/default/pmacctd /etc/pmacct /etc/networks_list /etc/fastnetmon.conf" for file in $DELETE; do if [ -f ${file} ]; then rm -f ${file} |