summaryrefslogtreecommitdiff
path: root/community-testing/privoxy/privoxy.install
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-09-03 16:37:12 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-09-03 16:37:12 -0300
commit0ec0464a32563349252dda85e9176a9475d6fc34 (patch)
tree2a9596ff6111e4edd6c435f639c5f8b9e8e6e95f /community-testing/privoxy/privoxy.install
parentfd79a8838924a7320059d01dd72558f1cbceca0b (diff)
testing and other testing stuff
Diffstat (limited to 'community-testing/privoxy/privoxy.install')
-rw-r--r--community-testing/privoxy/privoxy.install19
1 files changed, 0 insertions, 19 deletions
diff --git a/community-testing/privoxy/privoxy.install b/community-testing/privoxy/privoxy.install
deleted file mode 100644
index c3ed75111..000000000
--- a/community-testing/privoxy/privoxy.install
+++ /dev/null
@@ -1,19 +0,0 @@
-post_install() {
- groupadd -g 42 privoxy &>/dev/null
- useradd -u 42 -g privoxy -d /var/spool/privoxy -s /bin/false privoxy &>/dev/null
- chown -R privoxy:privoxy /etc/privoxy /var/log/privoxy
-
- if [ ! -d /var/spool/privoxy ]; then
- install -dm0770 -o privoxy -g privoxy /var/spool/privoxy
- fi
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- userdel privoxy &>/dev/null
- groupdel privoxy &>/dev/null
- rm -rf var/spool/privoxy
-}