We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e4c4f17 + f265eea commit 441ff01Copy full SHA for 441ff01
build_container.sh
@@ -18,22 +18,6 @@ fi
18
# make sure specified temporary directory exists
19
mkdir -p $EESSI_TMPDIR
20
21
-# make sure that specified location has support for extended attributes,
22
-# since that's required by CernVM-FS
23
-command -v attr &> /dev/null
24
-if [ $? -eq 0 ]; then
25
- testfile=$(mktemp -p $EESSI_TMPDIR)
26
- attr -s test -V test $testfile > /dev/null
27
- if [ $? -ne 0 ]; then
28
- echo "ERROR: $EESSI_TMPDIR does not support extended attributes!" >&2
29
- #exit 2
30
- else
31
- rm $testfile
32
- fi
33
-else
34
- echo "WARNING: 'attr' command not available, so can't check support for extended attributes..." >&2
35
-fi
36
-
37
echo "Using $EESSI_TMPDIR as parent for temporary directories..."
38
39
# create temporary directories
0 commit comments