if [ -z "$CVMFS_PAC_URLS" ] || [ "$CVMFS_PAC_URLS" = "http://wpad/wpad.dat" ]; then # Set default list of proxy auto config urls if not set before this in # in an /etc/cvmfs/default.d file. if [ "$(($$ % 2))" -eq 1 ]; then CVMFS_PAC_URLS="http://grid-wpad/wpad.dat;http://wpad/wpad.dat;http://cernvm-wpad.fnal.gov/wpad.dat;http://cernvm-wpad.cern.ch/wpad.dat" else CVMFS_PAC_URLS="http://grid-wpad/wpad.dat;http://wpad/wpad.dat;http://cernvm-wpad.cern.ch/wpad.dat;http://cernvm-wpad.fnal.gov/wpad.dat" fi fi # cvmfs synthetic extended attributes ('pid', 'host', etc.) can interfere # with python shutil.copy2 and overlayFS when applied to files, so make # the attributes visible only on the root directory by default when possible. # Note that the magic xattrs are still available when explicitly requested # (attr -g ...), they are just not listed (attr -l ...). # For cvmfs >= 2.9.1 CVMFS_MAGIC_XATTRS_VISIBILITY=rootonly