public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] Restart logging after restoring backup
@ 2019-10-11 18:42 Tim FitzGeorge
  2019-10-14 10:29 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Tim FitzGeorge @ 2019-10-11 18:42 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1188 bytes --]

Send SIGHUP to syslogd and suricata after restoring backup.  This ensures that
if the restored backup includes log files that any new log messages get
appended to the restored log files.  Otherwise they will be written to the
old log files which are pending deletion.

httpd is told to restart using apachectl, which is the equivalent of sending
a signal. 'graceful' (USR1) is used rather than 'restart' (HUP) because the
latter immediately kills the process restoring the backup, preventing
converters from running.

Fixes: 12196
Signed-off-by: Tim FitzGeorge <ipfr(a)tfitzgeorge.me.uk>
---
 config/backup/backup.pl | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/config/backup/backup.pl b/config/backup/backup.pl
index 6ac4e4967..b1dd1d297 100644
--- a/config/backup/backup.pl
+++ b/config/backup/backup.pl
@@ -71,6 +71,11 @@ restore_backup() {
 
 	tar xvzpf "${filename}" -C /
 
+	# Restart syslogd, httpd and suricata in case we've just loaded old logs
+	apachectl -k graceful
+	/bin/kill -HUP `cat /var/run/suricata.pid 2> /dev/null` 2> /dev/null
+	/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null
+
 	# Run converters
 
 	# Outgoing Firewall
-- 
2.16.4


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Restart logging after restoring backup
  2019-10-11 18:42 [PATCH] Restart logging after restoring backup Tim FitzGeorge
@ 2019-10-14 10:29 ` Michael Tremer
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2019-10-14 10:29 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1430 bytes --]

Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>

> On 11 Oct 2019, at 19:42, Tim FitzGeorge <ipfr(a)tfitzgeorge.me.uk> wrote:
> 
> Send SIGHUP to syslogd and suricata after restoring backup.  This ensures that
> if the restored backup includes log files that any new log messages get
> appended to the restored log files.  Otherwise they will be written to the
> old log files which are pending deletion.
> 
> httpd is told to restart using apachectl, which is the equivalent of sending
> a signal. 'graceful' (USR1) is used rather than 'restart' (HUP) because the
> latter immediately kills the process restoring the backup, preventing
> converters from running.
> 
> Fixes: 12196
> Signed-off-by: Tim FitzGeorge <ipfr(a)tfitzgeorge.me.uk>
> ---
> config/backup/backup.pl | 5 +++++
> 1 file changed, 5 insertions(+)
> 
> diff --git a/config/backup/backup.pl b/config/backup/backup.pl
> index 6ac4e4967..b1dd1d297 100644
> --- a/config/backup/backup.pl
> +++ b/config/backup/backup.pl
> @@ -71,6 +71,11 @@ restore_backup() {
> 
> 	tar xvzpf "${filename}" -C /
> 
> +	# Restart syslogd, httpd and suricata in case we've just loaded old logs
> +	apachectl -k graceful
> +	/bin/kill -HUP `cat /var/run/suricata.pid 2> /dev/null` 2> /dev/null
> +	/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null
> +
> 	# Run converters
> 
> 	# Outgoing Firewall
> -- 
> 2.16.4
> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-10-14 10:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-11 18:42 [PATCH] Restart logging after restoring backup Tim FitzGeorge
2019-10-14 10:29 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox