Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Docker-in-Docker (DinD) capabilities of public runners deactivated.
More info
Open sidebar
Fabio Hernandez
lsst-cvmfs
Commits
41abd50f
Commit
41abd50f
authored
May 04, 2015
by
Fabio Hernandez
Browse files
Create mount directory on MacOS X
parent
d9a84b44
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
README.md
README.md
+2
-2
configure.sh
configure.sh
+6
-2
No files found.
README.md
View file @
41abd50f
...
...
@@ -67,11 +67,11 @@ The configuration of CernVM FS client to use the binary distribution of LSST sof
You can tell the configuration process was successful if you don't see any error message.
* **[MacOS X
10.10
only]** On MacOS X
10.10
, you need to manually mount the file system:
* **[MacOS X only]** On MacOS X, you need to manually mount the file system:
$ /sbin/mount -t cvmfs lsst.in2p3.fr /cvmfs/lsst.in2p3.fr
For unmounting
it,
do:
For unmounting do:
$ /usr/bin/umount /cvmfs/lsst.in2p3.fr
...
...
configure.sh
View file @
41abd50f
...
...
@@ -41,7 +41,7 @@ chmod 0644 /etc/cvmfs/config.d/lsst.in2p3.fr.conf
cp
lsst.in2p3.fr.pub /etc/cvmfs/keys/lsst.in2p3.fr.pub
chmod
0444 /etc/cvmfs/keys/lsst.in2p3.fr.pub
# On Linux, check th
is
configuration
# On Linux,
use 'cvmfs_config' to
check th
e
configuration
thisOS
=
`
uname
`
if
[
"
$thisOS
"
==
"Linux"
]
;
then
result
=
`
/usr/bin/cvmfs_config chksetup
`
...
...
@@ -52,6 +52,11 @@ if [ "$thisOS" == "Linux" ]; then
fi
fi
# On MacOS X, create the mount directory
if
[
"
$thisOS
"
==
"Darwin"
]
;
then
mkdir
-p
/cvmfs/lsst.in2p3.fr
fi
# Check that we can reach the CernVM FS server
source
./lsst.in2p3.fr.conf
curl
-s
--proxy
${
CVMFS_HTTP_PROXY
}
--head
${
CVMFS_SERVER_URL
}
>
/dev/null 2>&1
...
...
@@ -60,7 +65,6 @@ if [ $? -ne 0 ]; then
exit
1
fi
# On Linux, restart autofs
if
[
"
$thisOS
"
==
"Linux"
]
;
then
service autofs restart
>
/dev/null 2>&1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment