-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeb_debian_postinst.dtl
41 lines (31 loc) · 968 Bytes
/
deb_debian_postinst.dtl
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
36
37
38
39
40
41
#! /bin/sh
# postinst script for zotonic
#
# see: dh_installdeb(1)
set -e
. /usr/share/debconf/confmodule
do_setup()
{
chown {{ package_install_user }}:{{ package_install_user }} -R /var/lib/{{ package_name }}
mkdir -p /var/log/{{ package_name }}
chown {{ package_install_user }}:{{ package_install_user }} /var/log/{{ package_name }}
if [ ! -L "/usr/lib/{{ package_name }}/log" ]; then
cd /usr/lib/{{ package_name }} && ln -s /var/log/{{ package_name }} ./log
fi
}
case "$1" in
configure|reconfigure)
adduser --quiet --system --shell /bin/bash --group --home /var/lib/{{ package_install_user }} {{ package_install_user }}
do_setup "$@"
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0