aboutsummaryrefslogtreecommitdiff
path: root/network/tgt/doinst.sh
diff options
context:
space:
mode:
authorPierre-Philipp Braun <pbraun@nethence.com>2020-05-02 15:37:10 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2020-05-03 08:48:45 +0700
commit2fda09fed289ed44f1ea51f59105d820fee8c483 (patch)
tree1a6eba8175d75291bad0951a25ba6de830de2d6a /network/tgt/doinst.sh
parenta51aaf63e000781a3a686658cf2f05b410c46ba5 (diff)
network/tgt: Added SCSI target driver (iSCSI, Fibre Channel, SRP, etc)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/tgt/doinst.sh')
-rw-r--r--network/tgt/doinst.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/network/tgt/doinst.sh b/network/tgt/doinst.sh
new file mode 100644
index 0000000000000..65a825191010b
--- /dev/null
+++ b/network/tgt/doinst.sh
@@ -0,0 +1,25 @@
+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 cop
+y
+ 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}
+}
+
+config etc/tgt/targets.conf.new
+preserve_perms etc/rc.d/rc.tgtd.new