summaryrefslogtreecommitdiffstats
path: root/system/ocfs2-tools/doinst.sh
diff options
context:
space:
mode:
author Mario Preksavec2019-05-17 18:24:54 +0200
committer Willy Sudiarto Raharjo2019-05-17 18:25:25 +0200
commit7eed0390c7f9e6a8bf3447e1ec9dcdd5565b5135 (patch)
treedbff3d6eb325d10d198ef45864f8588b564e5839 /system/ocfs2-tools/doinst.sh
parentb02144a8d2f33677b2f7d0c87bb98d4bc50fb4ae (diff)
downloadslackbuilds-7eed0390c7f9e6a8bf3447e1ec9dcdd5565b5135.tar.gz
system/ocfs2-tools: Added (OCFS2 tools).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/ocfs2-tools/doinst.sh')
-rw-r--r--system/ocfs2-tools/doinst.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/system/ocfs2-tools/doinst.sh b/system/ocfs2-tools/doinst.sh
new file mode 100644
index 0000000000..fcddf04338
--- /dev/null
+++ b/system/ocfs2-tools/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...
+}
+
+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
+}
+
+preserve_perms etc/rc.d/rc.o2cb.new
+preserve_perms etc/rc.d/rc.ocfs2.new
+config etc/default/o2cb.new