diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-09 03:58:56 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-09 03:58:56 +0000 |
commit | ebfbe6aa4a09806147654dd9e8d512cd68921e0d (patch) | |
tree | 645198602e94164a4130285756f401ae0b0756fd /libre/virtualbox-libre/virtualbox-libre.install | |
parent | 3092fe0e20f490a5f9b8b9602ffc039a22be60c0 (diff) |
Thu Jan 9 03:54:24 UTC 2014
Diffstat (limited to 'libre/virtualbox-libre/virtualbox-libre.install')
-rw-r--r-- | libre/virtualbox-libre/virtualbox-libre.install | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/libre/virtualbox-libre/virtualbox-libre.install b/libre/virtualbox-libre/virtualbox-libre.install deleted file mode 100644 index ad4f70f76..000000000 --- a/libre/virtualbox-libre/virtualbox-libre.install +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh - -utils() { - if [ -x usr/bin/update-mime-database ]; then - update-mime-database usr/share/mime > /dev/null 2>&1 - fi - - if [ -x usr/bin/xdg-icon-resource ]; then - xdg-icon-resource forceupdate --theme hicolor > /dev/null 2>&1 - fi - - if [ -x usr/bin/update-desktop-database ]; then - usr/bin/update-desktop-database -q - fi - - if [ -x usr/bin/udevadm ]; then - usr/bin/udevadm control --reload - fi -} - -# arg 1: the new package version -post_install() { - getent group vboxusers >/dev/null || usr/sbin/groupadd -g 108 vboxusers - utils -} - -# arg 1: the new package version -# arg 2: the old package version -post_upgrade() { - post_install "$1" -} - -# arg 1: the old package version -post_remove() { - groupdel vboxusers >/dev/null 2>&1 || true - utils -} - -# vim:set ts=2 sw=2 ft=sh et: |