diff options
Diffstat (limited to 'community-testing/xbmc/xbmc.install')
-rw-r--r-- | community-testing/xbmc/xbmc.install | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/community-testing/xbmc/xbmc.install b/community-testing/xbmc/xbmc.install index 862508e73..a3ae3d0d8 100644 --- a/community-testing/xbmc/xbmc.install +++ b/community-testing/xbmc/xbmc.install @@ -1,15 +1,16 @@ 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 - true + groupadd xbmc + useradd -G xbmc -d /var/empty xbmc } post_upgrade() { post_install $1 - true + echo "You may want to add xbmc user and group to use xbmc standalone" } post_remove() { post_install $1 - true + echo "You may want to remove xbmc user and group" } |