summaryrefslogtreecommitdiffstats
path: root/debian/puppet.preinst
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2008-07-10 19:52:26 +1000
committerJames Turnbull <james@lovedthanlost.net>2008-07-10 19:52:26 +1000
commit605d760dd72b7b6bd3fd54e9f6c3ffacb1b9ee52 (patch)
treebfab41f07b972f61585ef2fcf454ad9fdef6c832 /debian/puppet.preinst
parentd25c2b282cc4cd703bba3d2457f93431098ddc85 (diff)
Moved debian to conf and updated examples directory
Diffstat (limited to 'debian/puppet.preinst')
-rw-r--r--debian/puppet.preinst25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/puppet.preinst b/debian/puppet.preinst
deleted file mode 100644
index ce8e76083..000000000
--- a/debian/puppet.preinst
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /bin/sh
-
-case "$1" in
- install|upgrade)
- /usr/sbin/adduser --system \
- --group \
- --home /var/lib/puppet \
- --gecos "Puppet configuration management daemon" \
- puppet > /dev/null
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0
-
-