updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / halevt / halevt.install
blobb030d1ed793e4e2e3ab6cf7fd740ea27e2d2a048
1 #/bin/bash
3 post_install() {
4   infodir=/usr/share/info
5   install-info $infodir/halevt.info $infodir/dir
6   if [ -z "`getent group halevt`" ]; then
7     groupadd halevt
8   fi
9   if [ -z "`getent passwd halevt`" ]; then
10     useradd -c 'Halevt system user' -g halevt -d '/var/lib/halevt' -s '/bin/false' halevt
11   fi
12   chown halevt:halevt /var/lib/halevt /var/run/halevt
13   echo ">> halevt: example configurations can be found in /usr/share/halevt/examples/"
16 pre_remove() {
17   killall halevt
20 post_remove() {
21   userdel halevt &> /dev/null
22   groupdel halevt &> /dev/null