Skip to content

Commit d13c784

Browse files
authored
Fix condition for installing CVMFS config package in install-cvmfs-linux.sh
1 parent 19d9f42 commit d13c784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install-cvmfs-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dpkg -i ${APT_ARCHIVES}/cvmfs-release-latest_all.deb
1313

1414
# Install CVMFS and config package
1515
apt-get -q update
16-
if [ -z "${CVMFS_CONFIG_PACKAGE}" ]; then
16+
if [ "${CVMFS_CONFIG_PACKAGE}" == "cvmfs-config-default" ]; then
1717
apt-get -q -y install cvmfs cvmfs-config-default
1818
else
1919
curl -L -o ${APT_ARCHIVES}/cvmfs-config.deb ${CVMFS_CONFIG_PACKAGE}

0 commit comments

Comments
 (0)