From: Russ Allbery Date: Fri, 24 Jan 2014 03:27:34 +0000 (-0800) Subject: Support AFS_DYNROOT=true X-Git-Tag: debian/1.6.6-1~1 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=7ee4bc1f14a43c7e89a4a9d10894b01ab227bcf5;p=packages%2Fo%2Fopenafs.git Support AFS_DYNROOT=true * 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) --- diff --git a/debian/changelog b/debian/changelog index 1ed5e724f..efd868713 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 23 Jan 2014 19:18:37 -0800 diff --git a/debian/openafs-client.init b/debian/openafs-client.init index 0f8518c47..431cda5ce 100755 --- a/debian/openafs-client.init +++ b/debian/openafs-client.init @@ -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"