diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-19 14:17:01 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-19 14:17:01 +0000 |
commit | 33ad773d04216c55e0513e0538a1ac4785148044 (patch) | |
tree | 7cfda181f6c750e64d7a82d1430c367c49bab10c /www/squid31/pkg-install | |
parent | 4a2a780340ea5aeef03830f395d9b730ab02121d (diff) |
Notes
Diffstat (limited to 'www/squid31/pkg-install')
-rw-r--r-- | www/squid31/pkg-install | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/www/squid31/pkg-install b/www/squid31/pkg-install index cb18a5f492bb..c6da82449174 100644 --- a/www/squid31/pkg-install +++ b/www/squid31/pkg-install @@ -121,13 +121,14 @@ PRE-INSTALL) fi ;; POST-INSTALL) - for file in mime.conf squid.conf; do + for file in cachemgr.conf mime.conf squid.conf; do if [ ! -f ${squid_confdir}/${file} \ -a -f ${squid_confdir}/${file}.default ]; then - echo "Creating ${file} from default..." - install -c -o root -g ${squid_group} -m 0640 \ - ${squid_confdir}/${file}.default ${squid_confdir}/${file} - fi + echo "Creating ${file} from default..." + install -c -o root -g ${squid_group} -m 0640 \ + ${squid_confdir}/${file}.default \ + ${squid_confdir}/${file} + fi done echo "===> Post-installation informations for ${pkgname}" |