summaryrefslogtreecommitdiff
path: root/system/virtualbox-ose/doinst.sh
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2011-04-03 20:45:31 +0200
committerRobby Workman <rworkman@slackbuilds.org>2011-04-05 18:54:18 -0500
commitbe0708ffdebb8f7244ca3b3cc695574efccfa071 (patch)
tree493075a6397bf8c08a9e5cdfdd8f3af2fde3d7f3 /system/virtualbox-ose/doinst.sh
parent4cea287dd5cd2f44c2197f51c14cc0b1d56308dd (diff)
downloadslackbuilds-be0708ffdebb8f7244ca3b3cc695574efccfa071.tar.gz
system/virtualbox: Renamed from virtualbox-ose and updated for version 4.0.4
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Diffstat (limited to 'system/virtualbox-ose/doinst.sh')
-rw-r--r--system/virtualbox-ose/doinst.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/system/virtualbox-ose/doinst.sh b/system/virtualbox-ose/doinst.sh
deleted file mode 100644
index 33be91fa14..0000000000
--- a/system/virtualbox-ose/doinst.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-preserve_perms() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ -e $OLD ]; then
- cp -a $OLD ${NEW}.incoming
- cat $NEW > ${NEW}.incoming
- mv ${NEW}.incoming $NEW
- fi
- config $NEW
-}
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
-fi
-
-# Prepare the new configuration files
-config etc/vbox/vbox.cfg.new
-config etc/default/virtualbox.new
-preserve_perms etc/rc.d/rc.vboxdrv.new
-