updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / tvheadend-git / tvheadend.install
blobf2446007e519872d7033debbcbea88245e83dcc9
1 HTS_USER=hts
2 HTS_UID=1337
3 HTS_GROUP=video
5 post_install() {
6   if ! getent passwd $HTS_USER &> /dev/null; then
7     useradd -u $HTS_UID -g $HTS_GROUP -m -s /bin/false $HTS_USER &> /dev/null
8     passwd -l $HTS_USER &> /dev/null
9     echo "  ==> User '$HTS_USER' created"
10   fi
12 cat << 'EOM'
13   ==> All configuration is maintained through the web interface:
14   ==>
15   ==> http://localhost:9981/
16   ==>
17   ==> Default login without username/password.
18 EOM
21 post_remove() {
22   userdel $HTS_USER &> /dev/null
23   echo "  ==> User '$HTS_USER' removed"