diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-08-07 21:54:22 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-08-07 21:54:22 +0000 |
commit | f675bdcd10e88e7bef4d79417add71dee688ec95 (patch) | |
tree | e67c49411f6f8fd70e7de7099257579c9fbf4da6 | |
parent | f1a018a88809d5f276a00e28c89d1e6e2f397a1a (diff) | |
download | pfsense-packages-f675bdcd10e88e7bef4d79417add71dee688ec95.tar.gz pfsense-packages-f675bdcd10e88e7bef4d79417add71dee688ec95.tar.bz2 pfsense-packages-f675bdcd10e88e7bef4d79417add71dee688ec95.zip |
Remove temporary files in deinstall phase
-rw-r--r-- | packages/bsdstats/bsdstats.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/bsdstats/bsdstats.xml b/packages/bsdstats/bsdstats.xml index 8ae7834e..c9d587ca 100644 --- a/packages/bsdstats/bsdstats.xml +++ b/packages/bsdstats/bsdstats.xml @@ -21,5 +21,7 @@ system("cat /etc/periodic.conf | grep -n \"monthly_statistics_report_devices\" >/tmp/periodic.conf"); system("cat /tmp/periodic.conf | grep -n \"monthly_statistics_enable\" >/etc/periodic.conf"); system("rm /usr/local/etc/periodic/monthly/300.statistics"); + system("rm /tmp/periodic.conf"); + system("rm /tmp/getid"); </custom_php_deinstall_command> </packagegui> |