blob: fdcc7ee2acae0a759e924de532cf93ba6edd5564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
set -e
#DEBHELPER#
OUT=/dev/null
USERNAME=stackbin
HOME=/var/stackbin
SERVICE=stackbin
case "$1" in
configure)
update-rc.d ${SERVICE} defaults
if ! getent passwd ${USERNAME} 1>${OUT} 2>&1 ;
then
echo "Creating ${USERNAME} system user & group..."
adduser --quiet --system --home $HOME \
--disabled-password --group \
--gecos "stackbin system user" \
${USERNAME} > ${OUT} 2>&1
fi
chown ${USERNAME}:${USERNAME} \
${HOME} ${HOME}/* \
/var/log/${SERVICE} /var/log/${SERVICE}/*log 1>/${OUT} 2>&1 || :
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0
|