diff options
Diffstat (limited to 'network/iscsitarget/doinst.sh')
-rw-r--r-- | network/iscsitarget/doinst.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/network/iscsitarget/doinst.sh b/network/iscsitarget/doinst.sh new file mode 100644 index 0000000000..89debfb1e3 --- /dev/null +++ b/network/iscsitarget/doinst.sh @@ -0,0 +1,30 @@ +#!/bin/sh +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.iscsi-target.new: +if [ -e etc/rc.d/rc.iscsi-target ]; then + cp -a etc/rc.d/rc.iscsi-target etc/rc.d/rc.iscsi-target.new.incoming + cat etc/rc.d/rc.iscsi-target.new > etc/rc.d/rc.iscsi-target.new.incoming + mv etc/rc.d/rc.iscsi-target.new.incoming etc/rc.d/rc.iscsi-target.new +else + # Install executable otherwise - irrelevant unless user starts in rc.local + chmod 0755 etc/rc.d/rc.iscsi-target.new +fi + +config etc/rc.d/rc.iscsi-target.new + +if [ -x /sbin/depmod ]; then +echo -e "Updating modules..." +depmod -a +fi |