[23598] in Source-Commits
/svn/athena r23237 - trunk/debathena/debathena/pyhesiodfs/debian
daemon@ATHENA.MIT.EDU (andersk@MIT.EDU)
Tue Nov 4 02:58:17 2008
Date: Tue, 4 Nov 2008 02:57:46 -0500 (EST)
From: andersk@MIT.EDU
Message-Id: <200811040757.CAA13107@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: andersk
Date: 2008-11-04 02:57:45 -0500 (Tue, 04 Nov 2008)
New Revision: 23237
Modified:
trunk/debathena/debathena/pyhesiodfs/debian/changelog
trunk/debathena/debathena/pyhesiodfs/debian/debathena-pyhesiodfs.init
Log:
In pyhesiodfs:
* Fix a typo in the /lib/init/vars.sh part of the previous commit (which
was a work in progress and intentionally not committed).
* Revert /dev/fuse change, pending further investigation (/dev/fuse is
supposewd to be managed by udev).
Modified: trunk/debathena/debathena/pyhesiodfs/debian/changelog
===================================================================
--- trunk/debathena/debathena/pyhesiodfs/debian/changelog 2008-11-04 04:57:56 UTC (rev 23236)
+++ trunk/debathena/debathena/pyhesiodfs/debian/changelog 2008-11-04 07:57:45 UTC (rev 23237)
@@ -1,3 +1,12 @@
+debathena-pyhesiodfs (0.0.r150-0debathena3) unstable; urgency=low
+
+ * Fix a typo in the /lib/init/vars.sh part of the previous commit (which
+ was a work in progress and intentionally not committed).
+ * Revert /dev/fuse change, pending further investigation (/dev/fuse is
+ supposewd to be managed by udev).
+
+ -- Anders Kaseorg <andersk@mit.edu> Tue, 04 Nov 2008 02:56:25 -0500
+
debathena-pyhesiodfs (0.0.r150-0debathena2) unstable; urgency=low
[ Anders Kaseorg ]
Modified: trunk/debathena/debathena/pyhesiodfs/debian/debathena-pyhesiodfs.init
===================================================================
--- trunk/debathena/debathena/pyhesiodfs/debian/debathena-pyhesiodfs.init 2008-11-04 04:57:56 UTC (rev 23236)
+++ trunk/debathena/debathena/pyhesiodfs/debian/debathena-pyhesiodfs.init 2008-11-04 07:57:45 UTC (rev 23237)
@@ -32,7 +32,7 @@
# Load the VERBOSE setting and other rcS variables
: ${VERBOSE:=yes}
-if [ -f /lib/lsb/init/vars.sh ]; then
+if [ -f /lib/init/vars.sh ]; then
. /lib/init/vars.sh
elif [ -f /etc/default/rcS ]; then
. /etc/default/rcS
@@ -54,8 +54,6 @@
# Try to make sure fuse is setup
[ -e /dev/fuse ] || modprobe fuse || return 2
- chown root:fuse /dev/fuse || return 2
- chmod g+rw /dev/fuse || return 2
if cat /proc/mounts | grep " $pyhesiodfs_dir " >/dev/null 2>&1; then
return 1