diff options
author | LukenShiro <lukenshiro@ngi.it> | 2010-05-11 22:55:25 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:55:25 +0200 |
commit | ac86efbc483a1c3dd2988a8ad865332baf1dc8d3 (patch) | |
tree | 010d580c54b907698cce6450cd610ff4917c024c /system/opensc/doinst.sh | |
parent | 36cfa2e44bffd3aa5a2d41ced82ca7c0befb23e2 (diff) | |
download | slackbuilds-ac86efbc483a1c3dd2988a8ad865332baf1dc8d3.tar.gz |
system/opensc: Added to 12.1 repository
Diffstat (limited to 'system/opensc/doinst.sh')
-rw-r--r-- | system/opensc/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/opensc/doinst.sh b/system/opensc/doinst.sh new file mode 100644 index 0000000000..aeee8de287 --- /dev/null +++ b/system/opensc/doinst.sh @@ -0,0 +1,15 @@ +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/opensc.conf.new + |