summaryrefslogtreecommitdiffstats
path: root/system/softhsm/doinst.sh
diff options
context:
space:
mode:
author Giuseppe Di Terlizzi2021-04-02 06:16:17 +0200
committer Willy Sudiarto Raharjo2021-04-02 06:16:17 +0200
commit76712d9461bd994b1689088540000a5908ccc47f (patch)
tree44550dee895cfbf2b2447d164466c61451b7599a /system/softhsm/doinst.sh
parentf7384cf8b9c98c8c43e7570395bde7fb651baa7e (diff)
downloadslackbuilds-76712d9461bd994b1689088540000a5908ccc47f.tar.gz
system/softhsm: Updated for version 2.6.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/softhsm/doinst.sh')
-rw-r--r--system/softhsm/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/softhsm/doinst.sh b/system/softhsm/doinst.sh
new file mode 100644
index 0000000000..a3383ce28e
--- /dev/null
+++ b/system/softhsm/doinst.sh
@@ -0,0 +1,14 @@
+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...
+}
+
+config etc/softhsm2.conf.new