Skip to content

Commit 441ff01

Browse files
authored
Merge pull request #189 from boegel/drop_attr_check
remove check for support for extended attributes from script for using build container
2 parents e4c4f17 + f265eea commit 441ff01

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

build_container.sh

-16
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,6 @@ fi
1818
# make sure specified temporary directory exists
1919
mkdir -p $EESSI_TMPDIR
2020

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-
3721
echo "Using $EESSI_TMPDIR as parent for temporary directories..."
3822

3923
# create temporary directories

0 commit comments

Comments
 (0)