[Pkg-samba-maint] r1479 - trunk/samba/debian
bubulle at alioth.debian.org
bubulle at alioth.debian.org
Tue Jul 17 18:26:59 UTC 2007
Author: bubulle
Date: 2007-07-17 18:26:59 +0000 (Tue, 17 Jul 2007)
New Revision: 1479
Modified:
trunk/samba/debian/changelog
trunk/samba/debian/panic-action
Log:
bail out if there's no "mail" command
Modified: trunk/samba/debian/changelog
===================================================================
--- trunk/samba/debian/changelog 2007-07-12 23:47:07 UTC (rev 1478)
+++ trunk/samba/debian/changelog 2007-07-17 18:26:59 UTC (rev 1479)
@@ -1,5 +1,6 @@
samba (3.0.25b-2) UNRELEASED; urgency=low
+ [ Steve Langasek ]
* Don't start nmbd if 'disable netbios' is set in the config.
Closes: #429429.
* missing_userspace_bugzilla999.patch: always use opt_gid and opt_uid,
@@ -23,8 +24,12 @@
the return value on failure is -1. Correct this assumption, which was
allowing any user to unmount shares mounted by other users.
- -- Steve Langasek <vorlon at debian.org> Thu, 12 Jul 2007 15:48:09 -0700
+ [ Christian Perrier ]
+ * debian/panic-action: bail out if there's no "mail" command
+ Patch from the Ubuntu samba packagers.
+ -- Christian Perrier <bubulle at debian.org> Tue, 17 Jul 2007 20:26:13 +0200
+
samba (3.0.25b-1) unstable; urgency=low
* New upstream version
Modified: trunk/samba/debian/panic-action
===================================================================
--- trunk/samba/debian/panic-action 2007-07-12 23:47:07 UTC (rev 1478)
+++ trunk/samba/debian/panic-action 2007-07-17 18:26:59 UTC (rev 1479)
@@ -1,5 +1,8 @@
#!/bin/sh
+# bail out if there's no "mail" command
+type mail >/dev/null 2>&1 || exit 0
+
# Redirect all output to our mail command
(
# We must be given a pid to look at
More information about the Pkg-samba-maint
mailing list