From 0bf5295390b374580dbd1e8f02743628ce854db3 Mon Sep 17 00:00:00 2001 From: cvsdist Date: Sep 09 2004 12:05:27 +0000 Subject: auto-import samba-2.2.5-8 from samba-2.2.5-8.src.rpm --- diff --git a/samba.spec b/samba.spec index fa2cd52..5c1c77e 100644 --- a/samba.spec +++ b/samba.spec @@ -4,7 +4,7 @@ Summary: The Samba SMB server. Name: samba Version: 2.2.5 -Release: 7 +Release: 8 License: GNU GPL Version 2 Group: System Environment/Daemons URL: http://www.samba.org/ @@ -418,6 +418,9 @@ fi #%{_mandir}/ja/man8/smbpasswd.8* %changelog +* Mon Aug 5 2002 Trond Eivind Glomsr�d 2.2.5-8 +- Initscript fix (#70720) + * Fri Jul 26 2002 Trond Eivind Glomsr�d 2.2.5-7 - Enable VFS support and compile the "recycling" module (#69796) - more selective includes of the examples dir diff --git a/smb.init b/smb.init index 42c89ed..fca823a 100644 --- a/smb.init +++ b/smb.init @@ -34,6 +34,10 @@ fi # Check that smb.conf exists. [ -f /etc/samba/smb.conf ] || exit 0 +# Check that we can write to it... so non-root users stop here +[ -w /etc/samba/smb.conf ] || exit 0 + + RETVAL=0