diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2010-05-12 19:20:34 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-16 22:24:29 -0500 |
commit | 74fc7939ce16933bbd6dd198a9270c70be786df8 (patch) | |
tree | bc9db0c00072309ff947927a555a7ca8aa556796 /system/apache-tomcat/doinst.sh | |
parent | 4e72060c79db8f41412b39cdbf13bf049a5f0672 (diff) | |
download | slackbuilds-74fc7939ce16933bbd6dd198a9270c70be786df8.tar.gz |
system/apache-tomcat: Added (Java Servlet/JavaServer Pages implementation)
Diffstat (limited to 'system/apache-tomcat/doinst.sh')
-rw-r--r-- | system/apache-tomcat/doinst.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/system/apache-tomcat/doinst.sh b/system/apache-tomcat/doinst.sh new file mode 100644 index 0000000000..3b6fbddc80 --- /dev/null +++ b/system/apache-tomcat/doinst.sh @@ -0,0 +1,22 @@ +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.tomcat.new: +if [ -e etc/rc.d/rc.tomcat ]; then + cp -a etc/rc.d/rc.tomcat etc/rc.d/rc.tomcat.new.incoming + cat etc/rc.d/rc.tomcat.new > etc/rc.d/rc.tomcat.new.incoming + mv etc/rc.d/rc.tomcat.new.incoming etc/rc.d/rc.tomcat.new +fi + +config etc/rc.d/rc.tomcat.new + |