diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-18 01:03:08 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-19 09:06:59 -0500 |
commit | ce5d8576cceb6afdae47341eb2298b91a11f3944 (patch) | |
tree | c0eb217ac34301048f76f934443696254545ec03 /network/nginx/doinst.sh | |
parent | fa9971b7cf6920b765c65d76c355ed14d37bf6e0 (diff) |
network/nginx: Removed (no maintainer)
Diffstat (limited to 'network/nginx/doinst.sh')
-rw-r--r-- | network/nginx/doinst.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/network/nginx/doinst.sh b/network/nginx/doinst.sh deleted file mode 100644 index 9641df388812..000000000000 --- a/network/nginx/doinst.sh +++ /dev/null @@ -1,22 +0,0 @@ -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 - |