PKGBUILDs/aur/couchpotato-git/couchpotato.install
2011-02-27 22:00:10 -05:00

18 lines
621 B
Plaintext

## arg 1: the new package version
post_install() {
groupadd couchpotato &> /dev/null
useradd -g couchpotato -d /opt/couchpotato -s /bin/false couchpotato &> /dev/null
chown -R couchpotato:couchpotato /opt/couchpotato
echo " >> If you change CouchPotato's port in the general configuration page, you will need to edit /etc/rc.d/couchpotato to have it point to the new port number"
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
chown -R couchpotato:couchpotato /opt/couchpotato
}
## arg 1: the old package version
pre_remove() {
userdel couchpotato &> /dev/null
}