diff options
author | Giorgio Peron <giorgio.peron@gmail.com> | 2014-03-02 22:50:06 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-03-03 01:13:05 +0700 |
commit | d36d82a9a977ddb8f8fd0882edf01586da129254 (patch) | |
tree | 512b7c0eb6e12a76df0a871bc8aa4f1b0f681f22 /network/wildfly/doinst.sh | |
parent | eab0b988e13cfaf0184e25b02cd7d05e280e7b5a (diff) | |
download | slackbuilds-d36d82a9a977ddb8f8fd0882edf01586da129254.tar.gz |
network/wildfly: Added (Application Runtime).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/wildfly/doinst.sh')
-rw-r--r-- | network/wildfly/doinst.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/network/wildfly/doinst.sh b/network/wildfly/doinst.sh new file mode 100644 index 0000000000..8eafd82853 --- /dev/null +++ b/network/wildfly/doinst.sh @@ -0,0 +1,26 @@ +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 +} + +# Keep same perms on rc.wildfly.new: +preserve_perms etc/rc.d/rc.wildfly.new |