diff options
author | Marcel Saegebarth <marc@mos6581.de> | 2015-08-28 14:03:55 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-08-28 22:14:05 +0700 |
commit | a192cacb4a5ad14bbffc128316dc478b2796d354 (patch) | |
tree | 5b5c0efafef573b5ad67326d548ef47a4000ecbe /network/ftp-cloudfs/doinst.sh | |
parent | 4ca86bf38c1ecae5fdac7f01784c4d46505308d5 (diff) | |
download | slackbuilds-a192cacb4a5ad14bbffc128316dc478b2796d354.tar.gz |
network/ftp-cloudfs: Updated for version 0.34.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/ftp-cloudfs/doinst.sh')
-rw-r--r-- | network/ftp-cloudfs/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/network/ftp-cloudfs/doinst.sh b/network/ftp-cloudfs/doinst.sh new file mode 100644 index 0000000000..d7adcd9842 --- /dev/null +++ b/network/ftp-cloudfs/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/ftpcloudfs.config.new |