From 6e3fd936c7aa77a5e39b77f3b5c6536f46fa9f03 Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Tue, 9 Aug 2016 18:11:46 +0200 Subject: [PATCH] Set the default for SyncOnClose to Yes Patch-Name: cupsd-set-default-for-SyncOnClose-to-Yes.patch Gbp-Pq: Name 0029-Set-the-default-for-SyncOnClose-to-Yes.patch --- conf/cups-files.conf.in | 2 +- doc/help/man-cups-files.conf.html | 2 +- man/cups-files.conf.5 | 2 +- scheduler/conf.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conf/cups-files.conf.in b/conf/cups-files.conf.in index 4a78ba6..a3d088d 100644 --- a/conf/cups-files.conf.in +++ b/conf/cups-files.conf.in @@ -7,7 +7,7 @@ #FatalErrors @CUPS_FATAL_ERRORS@ # Do we call fsync() after writing configuration or status files? -#SyncOnClose No +#SyncOnClose Yes # Default user and group for filters/backends/helper programs; this cannot be # any user or group that resolves to ID 0 for security reasons... diff --git a/doc/help/man-cups-files.conf.html b/doc/help/man-cups-files.conf.html index c567cbb..f2f6802 100644 --- a/doc/help/man-cups-files.conf.html +++ b/doc/help/man-cups-files.conf.html @@ -150,7 +150,7 @@ The default is "/var/run/cups" or "/etc/cups" depending on the platform.
Specifies whether the scheduler calls fsync(2) after writing configuration or state files. -The default is "No". +The default is "Yes".
SystemGroup group-name [ ... group-name ]
Specifies the group(s) to use for @SYSTEM group authentication. The default contains "admin", "lpadmin", "root", "sys", and/or "system". diff --git a/man/cups-files.conf.5 b/man/cups-files.conf.5 index 7249406..955f47b 100644 --- a/man/cups-files.conf.5 +++ b/man/cups-files.conf.5 @@ -211,7 +211,7 @@ The default is "/var/run/cups" or "/etc/cups" depending on the platform. Specifies whether the scheduler calls .BR fsync (2) after writing configuration or state files. -The default is "No". +The default is "Yes". .\"#SystemGroup .TP 5 \fBSystemGroup \fIgroup-name \fR[ ... \fIgroup-name\fR ] diff --git a/scheduler/conf.c b/scheduler/conf.c index 31eedbf..f2924f8 100644 --- a/scheduler/conf.c +++ b/scheduler/conf.c @@ -735,7 +735,7 @@ cupsdReadConfiguration(void) RootCertDuration = 300; Sandboxing = CUPSD_SANDBOXING_STRICT; StrictConformance = FALSE; - SyncOnClose = FALSE; + SyncOnClose = TRUE; Timeout = 900; WebInterface = CUPS_DEFAULT_WEBIF;