diff options
author | Menno E. Duursma | 2010-05-11 15:18:42 +0200 |
---|---|---|
committer | Robby Workman | 2010-05-11 15:18:42 +0200 |
commit | fa2426f410d0f29f621d095e5e71b89f3f032252 (patch) | |
tree | 490ea2e1c1afda1a18b74caf079fb9864544c62b /system/pmount/doinst.sh | |
parent | f3a34d376ecea15be8eb56a386317d25f2e67249 (diff) | |
download | slackbuilds-fa2426f410d0f29f621d095e5e71b89f3f032252.tar.gz |
system/pmount: Initial import
Diffstat (limited to 'system/pmount/doinst.sh')
-rw-r--r-- | system/pmount/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/pmount/doinst.sh b/system/pmount/doinst.sh new file mode 100644 index 0000000000..e7c14965b1 --- /dev/null +++ b/system/pmount/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/pmount.allow.new + |