diff options
author | Marco Bonetti <sid77@slackware.it> | 2011-10-21 11:23:23 -0500 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-10-22 10:17:10 -0200 |
commit | 50562f88dff2535a1f84fc03c23a3f5c137871c5 (patch) | |
tree | 77cab459b8bf1be87633acbcde9ff9743340493e /system/apache-activemq/doinst.sh | |
parent | ae10052ebd5eee1f2dd95f7353d9327334eb5084 (diff) | |
download | slackbuilds-50562f88dff2535a1f84fc03c23a3f5c137871c5.tar.gz |
system/apache-activemq: Added (Apache ActiveMQ)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system/apache-activemq/doinst.sh')
-rw-r--r-- | system/apache-activemq/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/apache-activemq/doinst.sh b/system/apache-activemq/doinst.sh new file mode 100644 index 0000000000..5a15a4d201 --- /dev/null +++ b/system/apache-activemq/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... +} + +# Keep same perms on rc.activemq.new: +if [ -e etc/rc.d/rc.activemq ]; then + cp -a etc/rc.d/rc.activemq etc/rc.d/rc.activemq.new.incoming + cat etc/rc.d/rc.activemq.new > etc/rc.d/rc.activemq.new.incoming + mv etc/rc.d/rc.activemq.new.incoming etc/rc.d/rc.activemq.new +fi + +config etc/default/activemq.new +config etc/rc.d/rc.activemq.new +for F in `find etc/activemq -name '*.new'`; do + config $F +done + |