summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreeve Jelbert2009-10-29 16:24:08 +0100
committerTreeve Jelbert2009-10-29 16:24:08 +0100
commitae03a36e16461541e4aecb67a4bc868c78dea627 (patch)
tree5405d969852a8ffaf436d6c176de3294f379a6da
parentdfbaf36b3ca392c40221cb598e388a682201f678 (diff)
parent3d3af89902716a7f9995819b708e2843975bbc44 (diff)
Merge branch 'master' of ssh://scm.sourcemage.org/smgl/grimoire
-rwxr-xr-xhttp/nginx/DETAILS4
-rw-r--r--http/nginx/HISTORY4
-rwxr-xr-xhttp/nginx/INSTALL4
3 files changed, 9 insertions, 3 deletions
diff --git a/http/nginx/DETAILS b/http/nginx/DETAILS
index bbe1f2ad01..3dae0ecfd1 100755
--- a/http/nginx/DETAILS
+++ b/http/nginx/DETAILS
@@ -4,9 +4,9 @@ if [[ $NGINX_RELEASE == legacy ]]; then
SECURITY_PATCH=1
SOURCE_HASH=sha512:b8ec805b146eb4050b66987e00d23568cab8dfb620ad021b02e09aac6df37919d17e9ef6102b3b08fbb8b07262da46d595e263b3de62d83f0be624dd8a3822d8
else
- VERSION=0.7.62
+ VERSION=0.7.63
SECURITY_PATCH=1
- SOURCE_HASH=sha512:e86dc4773f6f2efbb7c01beaabf4e07ab401e6ba4605b0011d19bb67c8ee83c71234f62b4d4a0cc8f4271f0748d73e1352c8566a1dc590b9611870a4b870c249
+ SOURCE_HASH=sha512:a79cf3d301b0caf1219d51bb61cc1073e2305b13b682f9e52faa750ef925bac5ad973df0474a633f0e475b34b1cff6aa158e52f7c4917cd241b51abcb8a25ee1
fi
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://sysoev.ru/$SPELL/$SOURCE
diff --git a/http/nginx/HISTORY b/http/nginx/HISTORY
index 7d8ff6d4e3..945e603789 100644
--- a/http/nginx/HISTORY
+++ b/http/nginx/HISTORY
@@ -1,3 +1,7 @@
+2009-10-29 Vlad Glagolev <stealth@sourcemage.org>
+ * DETAILS: updated stable to 0.7.63
+ * INSTALL: install temp dir only if it doesn't exist
+
2009-10-01 Vlad Glagolev <stealth@sourcemage.org>
* INSTALL: fixed default rights for cache dir
diff --git a/http/nginx/INSTALL b/http/nginx/INSTALL
index 18dfe57530..a6c2b1651b 100755
--- a/http/nginx/INSTALL
+++ b/http/nginx/INSTALL
@@ -2,4 +2,6 @@ make_single &&
default_install &&
make_normal &&
-install -vm 775 -d -o nginx -g nginx "$TEMP_DIR"
+if [[ ! -d "$TEMP_DIR" ]]; then
+ install -vm 775 -d -o nginx -g nginx "$TEMP_DIR"
+fi