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

post_upgrade() {
  post_install
}

post_remove() {
  if getent passwd acestream &>/dev/null; then
    userdel acestream
  fi
}