summaryrefslogtreecommitdiff
path: root/community/xbmc/xbmc.install
diff options
context:
space:
mode:
Diffstat (limited to 'community/xbmc/xbmc.install')
-rw-r--r--community/xbmc/xbmc.install16
1 files changed, 0 insertions, 16 deletions
diff --git a/community/xbmc/xbmc.install b/community/xbmc/xbmc.install
deleted file mode 100644
index b104b33e8..000000000
--- a/community/xbmc/xbmc.install
+++ /dev/null
@@ -1,16 +0,0 @@
-post_install() {
- [[ $(type -p gtk-update-icon-cache) ]] && usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor
- [[ $(type -p update-desktop-database) ]] && usr/bin/update-desktop-database -q usr/share/applications
- getent group xbmc > /dev/null || groupadd xbmc
- getent passwd xbmc > /dev/null || useradd -m -d /var/lib/xbmc -g xbmc xbmc
- usermod -a -G xbmc,audio,video,power,network,optical,storage,disk xbmc
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install $1
- echo "You may want to remove xbmc user and group"
-}