]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
Support AFS_DYNROOT=true
authorRuss Allbery <rra@debian.org>
Fri, 24 Jan 2014 03:27:34 +0000 (19:27 -0800)
committerRuss Allbery <rra@debian.org>
Fri, 24 Jan 2014 03:27:34 +0000 (19:27 -0800)
* Accept AFS_DYNROOT=true as an alias for Yes in afs.conf.client,
  matching behavior of releases prior to 1.6.2.1-1.  (Closes: #729353)

debian/changelog
debian/openafs-client.init

index 1ed5e724fedb8bd038e0d7df6fd6c947f84739b5..efd86871343e137f2a5fa8855241715e65883b30 100644 (file)
@@ -6,6 +6,8 @@ openafs (1.6.6-1) UNRELEASED; urgency=low
     openafs-fuse, and openafs-kpasswd.  This was broken in previous
     releases by a miswritten debian/rules override.  Thanks to Andreas
     Beckmann for finding the problem and solution.  (Closes: #736305)
+  * Accept AFS_DYNROOT=true as an alias for Yes in afs.conf.client,
+    matching behavior of releases prior to 1.6.2.1-1.  (Closes: #729353)
 
  -- Russ Allbery <rra@debian.org>  Thu, 23 Jan 2014 19:18:37 -0800
 
index 0f8518c47a09c3c916f5e0073d9452e89fae1eaf..431cda5ceeb1a05f675224e3b78a49f9acdaf875 100755 (executable)
@@ -125,7 +125,7 @@ choose_afsd_options() {
     if is_on $AFS_AFSDB ; then
         AFSD_OPTIONS="$AFSD_OPTIONS -afsdb"
     fi
-    if [ "$AFS_DYNROOT" = 'Yes' ] ; then
+    if [ "$AFS_DYNROOT" = 'Yes' ] || [ "$AFS_DYNROOT" = 'true' ] ; then
         AFSD_OPTIONS="$AFSD_OPTIONS -dynroot"
     elif [ "$AFS_DYNROOT" = 'Sparse' ] ; then
         AFSD_OPTIONS="$AFSD_OPTIONS -dynroot-sparse"