We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95d8808 commit b9e0d07Copy full SHA for b9e0d07
cvmfs-config-osgd
@@ -1,20 +1,16 @@
1
#!/bin/bash
2
-# This is intended to be run as a daemon in order to keep a
3
-# CVMFS configuration repository mounted indefinitely on Debian.
+# This is intended to be run as a daemon in order to keep a CVMFS
+# configuration repository mounted indefinitely on Debian.
4
# It is to work around the fact that Debian's autofs does not allow
5
# recursive mounts.
6
ME="`basename $0`"
7
usage()
8
{
9
- echo "Usage: $ME [-p pidfile] directory_to_mount" >&2
+ echo "Usage: $ME directory_to_mount" >&2
10
exit 1
11
}
12
13
-if [ "$1" = "-p" ] && [ -n "$2" ]; then
14
- echo $$ >$2
15
- shift 2
16
-fi
17
-if [ -z "$1" ]; then
+if [ $# != 1 ]; then
18
usage
19
fi
20
set -e
0 commit comments