[cups] Check for cupsd.conf existence prior to grepping it (bug #928816).

Tim Waugh twaugh at fedoraproject.org
Thu Mar 28 16:40:47 UTC 2013


commit f8cefb02877b39d33fd90a97ce5bd98a7f7615e0
Author: Tim Waugh <twaugh at redhat.com>
Date:   Thu Mar 28 16:25:35 2013 +0000

    Check for cupsd.conf existence prior to grepping it (bug #928816).
    
    Resolves: rhbz#928816

 cups.spec |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/cups.spec b/cups.spec
index 780f025..2f24a37 100644
--- a/cups.spec
+++ b/cups.spec
@@ -11,7 +11,7 @@ Summary: CUPS printing system
 Name: cups
 Epoch: 1
 Version: 1.6.2
-Release: 2%{?dist}
+Release: 3%{?dist}
 License: GPLv2
 Group: System Environment/Daemons
 Url: http://www.cups.org/
@@ -393,7 +393,7 @@ for keyword in AccessLog CacheDir ConfigFilePerm	\
     RemoteRoot RequestRoot ServerBin ServerCertificate	\
     ServerKey ServerRoot SMBConfigFile StateDir		\
     SystemGroup SystemGroupAuthKey TempDir User; do
-    if ! /bin/grep -iq ^$keyword "$IN"; then continue; fi
+    if ! [ -f "$IN" ] || ! /bin/grep -iq ^$keyword "$IN"; then continue; fi
     copy=yes
     if /bin/grep -iq ^$keyword "$OUT"; then
 	if [ "`/bin/grep -i ^$keyword "$IN"`" ==	\
@@ -618,6 +618,9 @@ rm -f %{cups_serverbin}/backend/smb
 %{_mandir}/man5/ipptoolfile.5.gz
 
 %changelog
+* Thu Mar 28 2013 Tim Waugh <twaugh at redhat.com> 1:1.6.1-3
+- Check for cupsd.conf existence prior to grepping it (bug #928816).
+
 * Tue Mar 19 2013 Jiri Popelka <jpopelka at redhat.com> - 1:1.6.2-2
 - revert previous bug #919489 fix (i.e we don't ship banners now)
 


More information about the scm-commits mailing list