summaryrefslogtreecommitdiff
path: root/packaging/debian/monkeysphere.postinst
diff options
context:
space:
mode:
authorJameson Rollins <jrollins@finestructure.net>2010-03-23 02:51:43 -0400
committerJameson Rollins <jrollins@finestructure.net>2010-03-23 02:51:43 -0400
commit852fdea0c0100202a8dea99f986e6ae51ad0a72a (patch)
treeae7f698ef66e11262c01d75124b3432f730a76fd /packaging/debian/monkeysphere.postinst
parent34ee2c761045becff8f78a64e70aff3e6ade2617 (diff)
remove packaging/debian in favor of git buildpackage packaging
Diffstat (limited to 'packaging/debian/monkeysphere.postinst')
-rwxr-xr-xpackaging/debian/monkeysphere.postinst44
1 files changed, 0 insertions, 44 deletions
diff --git a/packaging/debian/monkeysphere.postinst b/packaging/debian/monkeysphere.postinst
deleted file mode 100755
index 8c6a555..0000000
--- a/packaging/debian/monkeysphere.postinst
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-
-# postinst script for monkeysphere
-
-# Author: Jameson Rollins <jrollins@finestructure.net>
-# Copyright 2008-2010
-
-set -e
-
-VARLIB="/var/lib/monkeysphere"
-
-case $1 in
- configure)
- # add a monkeysphere user if one does not already exist
- if ! getent passwd monkeysphere >/dev/null ; then
- echo "adding monkeysphere user..."
- adduser --quiet --system --no-create-home --group \
- --home "$VARLIB" \
- --shell '/bin/bash' \
- --gecos 'monkeysphere authentication user,,,' \
- monkeysphere
- fi
-
- # try all available transitions:
- for trans in 0.23 0.28 ; do
- /usr/share/monkeysphere/transitions/$trans || { \
- RET=$?
- echo "Failed running transition script /usr/share/monkeysphere/transitions/$trans" >&2
- exit $RET
- }
- done
-
-
- # setup monkeysphere authentication
- monkeysphere-authentication setup
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0