diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-20 21:15:05 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-21 00:34:40 -0500 |
commit | 32f321e4973c7591bc894abcf32fbe2952246592 (patch) | |
tree | 901e7a1f43d13ac15d1387b9b931161fd20b06fc /network/iscsitarget/doinst.sh | |
parent | 20443b8ecf9e0135e87c04491eda6fbc0a481be7 (diff) | |
download | slackbuilds-32f321e4973c7591bc894abcf32fbe2952246592.tar.gz |
network/iscsitarget: Removed (build failure)
Diffstat (limited to 'network/iscsitarget/doinst.sh')
-rw-r--r-- | network/iscsitarget/doinst.sh | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/network/iscsitarget/doinst.sh b/network/iscsitarget/doinst.sh deleted file mode 100644 index 9ff0023984..0000000000 --- a/network/iscsitarget/doinst.sh +++ /dev/null @@ -1,36 +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... -} - -# 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 - -if [ -f /etc/ietd.conf ];then -echo -en "\n\n\n!! iSCSI-target has recently changed the default location for conf files !!\n" -echo -en "The new location for conf files is now at /etc/iet\n" -echo -en "Furthermore the conf file initiators.deny is obsolete. \nFor futher info read the Man page\n\n\n" -fi - -config etc/rc.d/rc.iscsi-target.new -config etc/iet/ietd.conf.new -config etc/iet/targets.allow.new -config etc/iet/initiators.allow.new - -chroot . depmod -a @KERNEL@ 2>/dev/null 1>/dev/null - |