diff options
author | Cherife Li <cherife@dotimes.com> | 2010-05-11 20:01:39 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:01:39 +0200 |
commit | eae603ee41cf522828c07a4e8c490f4522d97800 (patch) | |
tree | fe7c4daa36f9d3cf9f5e87f2e9388e483eed7ab9 /network/nginx/doinst.sh | |
parent | 574b4d8305ea176e481f7ef5e4baa565df6ecc99 (diff) |
network/nginx: Added to 12.0 repository
Diffstat (limited to 'network/nginx/doinst.sh')
-rw-r--r-- | network/nginx/doinst.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/network/nginx/doinst.sh b/network/nginx/doinst.sh new file mode 100644 index 000000000000..9641df388812 --- /dev/null +++ b/network/nginx/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.nginx.new: +if [ -e etc/rc.d/rc.nginx ]; then + cp -a etc/rc.d/rc.nginx etc/rc.d/rc.nginx.new.incoming + cat etc/rc.d/rc.nginx.new > etc/rc.d/rc.nginx.new.incoming + mv etc/rc.d/rc.nginx.new.incoming etc/rc.d/rc.nginx.new +fi + +config etc/rc.d/rc.nginx.new + |