summarylogtreecommitdiffstats
path: root/acestream-engine.install
blob: bcedb3aa012de8c87531f7ea83f851fced0ecb06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install() {
  if ! getent passwd acestream &> /dev/null; then
    useradd -u 4035 -g video -m -s /usr/bin/nologin acestream
  fi
  ln -sf /opt/acestream/start-engine /usr/bin/acestreamengine
}

post_upgrade() {
  post_install
}

post_remove() {
  if getent passwd acestream &>/dev/null; then
    userdel acestream
  fi
  rm -f /usr/bin/acestreamengine
}