[24382] in Source-Commits
/svn/athena r23977 - trunk/athena/bin/machtype/debian
daemon@ATHENA.MIT.EDU (Geoffrey Thomas)
Wed Aug 26 16:22:34 2009
Date: Wed, 26 Aug 2009 16:22:23 -0400
From: Geoffrey Thomas <geofft@MIT.EDU>
Message-Id: <200908262022.n7QKMNdl008495@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: geofft
Date: 2009-08-26 16:22:23 -0400 (Wed, 26 Aug 2009)
New Revision: 23977
Modified:
trunk/athena/bin/machtype/debian/changelog
trunk/athena/bin/machtype/debian/debathena-machtype.postinst
Log:
In machtype:
* Don't make the inability to successfully run fs (e.g., if AFS hasn't
started yet, e.g., if we just unpacked AFS) fatal to installing this
package.
Modified: trunk/athena/bin/machtype/debian/changelog
===================================================================
--- trunk/athena/bin/machtype/debian/changelog 2009-08-25 13:32:34 UTC (rev 23976)
+++ trunk/athena/bin/machtype/debian/changelog 2009-08-26 20:22:23 UTC (rev 23977)
@@ -1,3 +1,11 @@
+debathena-machtype (10.0.1-0debathena5) unstable; urgency=low
+
+ * Don't make the inability to successfully run fs (e.g., if AFS hasn't
+ started yet, e.g., if we just unpacked AFS) fatal to installing this
+ package.
+
+ -- Geoffrey Thomas <geofft@mit.edu> Wed, 26 Aug 2009 16:20:30 -0400
+
debathena-machtype (10.0.1-0debathena4) unstable; urgency=low
* If AFS is installed, reload the sysname list when this package is
Modified: trunk/athena/bin/machtype/debian/debathena-machtype.postinst
===================================================================
--- trunk/athena/bin/machtype/debian/debathena-machtype.postinst 2009-08-25 13:32:34 UTC (rev 23976)
+++ trunk/athena/bin/machtype/debian/debathena-machtype.postinst 2009-08-26 20:22:23 UTC (rev 23977)
@@ -22,7 +22,7 @@
configure)
if hash fs >/dev/null 2>&1 && [ -e /etc/openafs/afs.conf ]; then
. /etc/openafs/afs.conf
- fs sysname $AFS_SYSNAME
+ fs sysname $AFS_SYSNAME || true
fi
;;