summarylogtreecommitdiffstats
path: root/couchpotato-git.install
blob: 848d2d7dd06b4aab8e5b9c55a8c562cc63a566da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
post_install() {
  post_upgrade

  echo "==> Start and enable couchpotato.service. Then visit http://localhost:5050/"
}

post_upgrade() {
  systemd-sysusers couchpotato.conf

  chown -R couchpotato:couchpotato /opt/couchpotato/app
  chown couchpotato:couchpotato /opt/couchpotato/data
}

pre_remove() {
  echo "==> Stopping couchpotato.service..."
  systemctl stop couchpotato.service
}

post_remove() {
  rm -rf /opt/couchpotato/app

  #echo "==> To delete the configuration files, run as root: rm -rf /opt/couchpotato/data"
  echo "==> To delete the configuration files, run as root: rm -rf /opt/couchpotato/{config.ini,data}"
  echo "==> To delete the \"couchpotato\" user, run as root: userdel --force couchpotato"
}