We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a407b3f commit 2660019Copy full SHA for 2660019
setup-cvmfs.sh
@@ -81,7 +81,9 @@ if [ "$(uname)" == "Linux" ]; then
81
# Mount CVMFS repositories (in case no autofs)
82
for repo in $(echo ${CVMFS_REPOSITORIES} | sed "s/,/ /g")
83
do
84
- sudo mount -t cvmfs ${repo} /cvmfs/${repo}
+ if [ ! -d /cvmfs/${repo} ]; then
85
+ sudo mount -t cvmfs ${repo} /cvmfs/${repo}
86
+ fi
87
done
88
elif [ "$(uname)" == "Darwin" ]; then
89
# Mount CVMFS repositories (no autofs available)
0 commit comments