summarylogtreecommitdiffstats
path: root/readme.install
blob: 7946017189261bc2f9cb2512bd161e828d549c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
post_remove() {
  echo "--> Optionally remove /var/lib/kodi/"
}

post_install() {
  echo "--> Optionally create /etc/conf.d/kodi-standalone if you need to pass"
  echo "--> any environment variables to the service"
  
  if [[ -L /etc/systemd/system/graphical.target.wants/kodi.service ]]; then
    echo '-->'
    echo '--> kodi.service is now kodi-x11.service'
    echo '--> you must disable the old one and enable the new one'
  fi
}

pre_upgrade() {
}
# vim:set ts=2 sw=2 et: