Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4d06c81c0cc9e0f226698db1a503d13b6a48f71c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4d06c81c0cc9e0f226698db1a503d13b6a48f71c)
  • Date: Fri, 18 Apr 2014 04:27:43 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

http/nginx/DETAILS | 1 +
http/nginx/HISTORY | 4 ++++
http/nginx/init.d/nginx | 2 +-
http/polipo/DETAILS | 1 +
http/polipo/HISTORY | 5 +++++
http/polipo/init.d/polipo | 6 ++++++
6 files changed, 18 insertions(+), 1 deletion(-)

New commits:
commit 4d06c81c0cc9e0f226698db1a503d13b6a48f71c
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

nginx: fixed logic bug in init script

commit b61d5028a16470e2eb51887b4feca93130f8e8fc
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

polipo: implemented reload function to prevent exiting when HUP signal is
sent

diff --git a/http/nginx/DETAILS b/http/nginx/DETAILS
index 153cec6..3bb0dfe 100755
--- a/http/nginx/DETAILS
+++ b/http/nginx/DETAILS
@@ -22,6 +22,7 @@ case "$NGINX_RELEASE" in
SECURITY_PATCH=4
;;
esac
+ PATCHLEVEL=1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SPELL-$VERSION.tar.gz.asc
SOURCE_URL[0]=http://nginx.org/download/$SOURCE
diff --git a/http/nginx/HISTORY b/http/nginx/HISTORY
index ec0a8ff..18a681d 100644
--- a/http/nginx/HISTORY
+++ b/http/nginx/HISTORY
@@ -1,3 +1,7 @@
+2014-04-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * init.d/nginx: fixed logic bug
+
2013-11-21 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: SECURITY_PATCH++
* PRE_BUILD: apply patch
diff --git a/http/nginx/init.d/nginx b/http/nginx/init.d/nginx
index 93ec2ac..e6aebce 100644
--- a/http/nginx/init.d/nginx
+++ b/http/nginx/init.d/nginx
@@ -10,7 +10,7 @@ reload() {
echo "Gracefully reloading Nginx web server..."

if [[ `nginx -v 2>&1 | cut -d. -f2` == 6 ]]; then
- kill -HUP "$PIDFILE"
+ kill -HUP `cat "$PIDFILE"`
else
$PROGRAM -s reload
fi
diff --git a/http/polipo/DETAILS b/http/polipo/DETAILS
index 4a50245..782c5b4 100755
--- a/http/polipo/DETAILS
+++ b/http/polipo/DETAILS
@@ -1,5 +1,6 @@
SPELL=polipo
VERSION=1.1.0
+ PATCHLEVEL=1
SOURCE=${SPELL}-${VERSION}.tar.gz
SOURCE2=${SOURCE}.asc

SOURCE_URL[0]=http://www.pps.univ-paris-diderot.fr/~jch/software/files/${SPELL}/${SOURCE}
diff --git a/http/polipo/HISTORY b/http/polipo/HISTORY
index edafb7a..3de234d 100644
--- a/http/polipo/HISTORY
+++ b/http/polipo/HISTORY
@@ -1,3 +1,8 @@
+2014-04-18 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * init.d/polipo: implemented reload function to prevent exiting when
+ HUP signal is sent
+
2014-04-16 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS, DEPENDS, {PRE_,}BUILD, INSTALL, polipo.gpg, init.d/polipo:
spell created
diff --git a/http/polipo/init.d/polipo b/http/polipo/init.d/polipo
index 3d47d4d..c96e9be 100755
--- a/http/polipo/init.d/polipo
+++ b/http/polipo/init.d/polipo
@@ -7,3 +7,9 @@ RUNLEVEL=3
NEEDS="+network"

. /etc/init.d/smgl_init
+
+reload() {
+ echo "Reloading the forbidden URLs file..."
+
+ reloadproc $PROGRAM USR2
+}



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4d06c81c0cc9e0f226698db1a503d13b6a48f71c), Vlad Glagolev, 04/18/2014

Archive powered by MHonArc 2.6.24.

Top of Page