diff options
author | Johannes Schoepfer <slackbuilds[AT]schoepfer[DOT]info> | 2016-07-25 04:40:54 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-07-25 04:40:54 +0700 |
commit | 2d3757155f464032e3b4a1b5b2544837aa2e0a4a (patch) | |
tree | 2cf05b92b08698def97f1380bbedea8592a6cf6c /system/letsencrypt.sh/doinst.sh | |
parent | 6d44becc3416302019a25d82d4ca9a5c8493d472 (diff) | |
download | slackbuilds-2d3757155f464032e3b4a1b5b2544837aa2e0a4a.tar.gz |
system/letsencrypt.sh: Added (letsencrypt client).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/letsencrypt.sh/doinst.sh')
-rw-r--r-- | system/letsencrypt.sh/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/letsencrypt.sh/doinst.sh b/system/letsencrypt.sh/doinst.sh new file mode 100644 index 0000000000..7e7aa33dc1 --- /dev/null +++ b/system/letsencrypt.sh/doinst.sh @@ -0,0 +1,25 @@ +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/letsencrypt.sh/config.sh.new |