updated on Fri Jan 13 00:14:41 UTC 2012
[aur-mirror.git] / horst / horst.install
blob318d686987af22e3cdfb6ba10c2d87744624c6a1
1 post_install() {
2     getent group horst >/dev/null 2>&1 ||  usr/sbin/groupadd -g 1550 horst &>/dev/null
4     setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/horst
5     echo "NOTE: To run horst as normal user you have to add yourself into horst group"
8 post_upgrade() {
9     getent group horst >/dev/null 2>&1 ||  usr/sbin/groupadd -g 1550 horst &>/dev/null
10     
11     setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/horst
14 post_remove() {
15     if getent group horst >/dev/null 2>&1; then
16         groupdel horst
17     fi