diff options
author | Niklas Nille Åkerström <nille.kungen[AT]gmail.com> | 2010-05-11 22:55:13 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:55:13 +0200 |
commit | fd133f51ff16a501bc64ea218b0fa86df2dafb47 (patch) | |
tree | 16028a468b52e1b89fedb65e87e93cd4bcb496db /system/cdemu-daemon/doinst.sh | |
parent | 01c5a6263c5ade57ed671a1e857ccdfe1dce02f3 (diff) | |
download | slackbuilds-fd133f51ff16a501bc64ea218b0fa86df2dafb47.tar.gz |
system/cdemu-daemon: Added to 12.1 repository
Diffstat (limited to 'system/cdemu-daemon/doinst.sh')
-rw-r--r-- | system/cdemu-daemon/doinst.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/system/cdemu-daemon/doinst.sh b/system/cdemu-daemon/doinst.sh new file mode 100644 index 0000000000..f984fef7d7 --- /dev/null +++ b/system/cdemu-daemon/doinst.sh @@ -0,0 +1,27 @@ +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... +} + +# Keep same perms on rc.cdemud.new: +if [ -e etc/rc.d/rc.cdemud ]; then + cp -a etc/rc.d/rc.cdemud etc/rc.d/rc.cdemud.new.incoming + cat etc/rc.d/rc.cdemud.new > etc/rc.d/rc.cdemud.new.incoming + mv etc/rc.d/rc.cdemud.new.incoming etc/rc.d/rc.cdemud.new +fi + +config etc/rc.d/rc.cdemud.new +config etc/rc.d/rc.cdemud.conf.new +config etc/dbus-1/system.d/cdemud-dbus.conf.new +config etc/udev/rules.d/99-vhba.rules.new + +# Reload dbus configuration +chroot . /etc/rc.d/rc.messagebus reload + |