updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git] / nutups / nut.install
blobae3589489987a38650cd0129feb96a3f1ce0e3aa
1 post_install(){
2     if [ -z "`grep '^ups::' /etc/group`" ]; then
3         groupadd -g 227 ups >& /dev/null
4     fi
5     if [ -z "`grep '^nut:' /etc/passwd`" ]; then
6         useradd -u 227 -g ups -d /var/lib/nut -s /bin/false nut
7     fi
8   mkdir -p /var/lib/nut
9   chown -R nut:ups /var/lib/nut &> /dev/null
10   mkdir -p /var/run/nut
11   chown nut:ups /var/run/nut &> /dev/null
12 echo "----------------------------------"
13 echo "To load Udev Rules without restart"
14 echo "issue the command 'udevadm trigger'"
15 echo "----------------------------------"
18 post_upgrade(){
19   getent group ups &>/dev/null || groupadd -g 227 ups &>/dev/null
20   getent passwd nut &>/dev/null || useradd -u 227 -g ups -d /var/lib/nut -s /bin/false nut &>/dev/null
21   chown -R nut:ups /var/lib/nut &> /dev/null
22   chown nut:ups /var/run/nut &> /dev/null
23 echo "--------------------------------------"
24 echo "To load new Udev Rules without restart"
25 echo "  issue the command 'udevadm trigger'"
26 echo "--------------------------------------"
29 post_remove(){
30   getent passwd nut &>/dev/null || userdel nut &>/dev/null
31   getent group ups &>/dev/null || groupdel ups &>/dev/null