From: Matthias Fischer <matthias.fischer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] squid init v2: Update-suggestions for (3.5.xx)-initscript
Date: Sat, 14 May 2016 19:52:56 +0200 [thread overview]
Message-ID: <1463248376-1471-1-git-send-email-matthias.fischer@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 2331 bytes --]
These changes are mainly meant for upcoming squid 3.5.xx:
- Raised 'while-loop'-time for stopping squid to 120 seconds.
- Changed the 'while-loop' from using 'statusproc' to 'squid -k check',
since 'statusproc' didn't find the still running '(squid-1)'-process.
Thus, 'squid' hadn't enough time to close the index. This led to a
damaged 'swap.state'-file and "Rebuilding storage in /var/log/cache"
always ended with "(dirty log)".
- Added some 'boot_mesg' lines in stop-routine.
- Changed the 'flush'-command to delete the entire 'swap.state'-file - it
will be automatically rebuild during the next start.
Best,
Matthias
Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
---
src/initscripts/init.d/squid | 29 +++++++++++++++++------------
1 file changed, 17 insertions(+), 12 deletions(-)
diff --git a/src/initscripts/init.d/squid b/src/initscripts/init.d/squid
index abed90a..5d9521b 100644
--- a/src/initscripts/init.d/squid
+++ b/src/initscripts/init.d/squid
@@ -108,22 +108,28 @@ case "$1" in
# Wait until all redirectors have been stopped.
wait
- # If squid is still running, wait up to 30 seconds
+ # If squid is still running, wait up to 120 seconds
# before we go on to kill it.
- counter=30
-
- while [ ${counter} -gt 0 ]; do
- statusproc /usr/sbin/squid >/dev/null && break;
+ n=0
+ while /usr/sbin/squid -k check && [ $n -lt 120 ]; do
sleep 1
- counter=$(( ${counter} - 1))
+ n=$(( ${n} + 1 ))
done
- # Kill squid service, if still running.
- killproc /usr/sbin/squid >/dev/null
+ # If (squid-1) is still running, kill all squid processes
+ # and delete damaged '/var/log/cache/swap.state'.
+ if ( ps ax | grep "(squid-1)$" ); then
+ killproc /usr/sbin/squid >/dev/null
+ /bin/rm -f /var/log/cache/swap.state
+ boot_mesg "(squid-1) was killed after 120 seconds."
+ else
+ boot_mesg "(squid-1) exited normally, shutdown OK."
+ fi
+ fi
- # Trash remain pid file from squid.
+ # Delete remaining pid file from squid if it STILL exists.
rm -rf /var/run/squid.pid
- fi
+
;;
restart)
@@ -143,8 +149,7 @@ case "$1" in
flush)
$0 stop
- echo > /var/log/cache/swap.state
- chown squid.squid /var/log/cache/swap.state
+ /bin/rm -f /var/log/cache/swap.state
sleep 1
$0 start
;;
--
2.8.2
next reply other threads:[~2016-05-14 17:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-14 17:52 Matthias Fischer [this message]
2016-05-15 10:37 ` Michael Tremer
2016-05-15 14:57 ` Matthias Fischer
2016-05-16 15:15 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1463248376-1471-1-git-send-email-matthias.fischer@ipfire.org \
--to=matthias.fischer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox