updated on Fri Jan 20 00:01:56 UTC 2012
[aur-mirror.git] / hal / hal.install
blobd6afee384cbd5d6e69bbcb5f6007fd7de095d60c
1 post_install() {
2   getent group hal >/dev/null || usr/sbin/groupadd -g 82 hal
3   getent group optical >/dev/null || usr/sbin/groupadd -g 93 optical
4   getent group floppy >/dev/null || usr/sbin/groupadd -g 94 floppy
5   getent group storage >/dev/null || usr/sbin/groupadd -g 95 storage
6   getent passwd hal >/dev/null || usr/sbin/useradd -c 'HAL daemon' -u 82 -g hal -G optical,floppy,storage -d '/' -s /bin/false hal
7   usr/bin/passwd -l hal &>/dev/null
10 # arg 1:  the new package version
11 # arg 2:  the old package version
12 post_upgrade() {
13   post_install $1
16 # arg 1:  the old package version
17 post_remove() {
18   if getent passwd hal &>/dev/null; then
19     usr/sbin/userdel hal
20   fi
21   if getent group hal &>/dev/null; then
22     usr/sbin/groupdel hal
23   fi