fix another SC2166 (test `[ .. -a.. ]` replaced by `[ .. ] && ]`)

remotes/origin/4.10
Thomas Eckert 6 years ago
parent ab9e2264df
commit 134c84607f
  1. 2
      cdist/conf/explorer/machine_type

@ -22,7 +22,7 @@
# FIXME: other system types (not linux ...)
if [ -d "/proc/vz" -a ! -d "/proc/bc" ]; then
if [ -d "/proc/vz" ] && [ ! -d "/proc/bc" ]; then
echo openvz
exit
fi

Loading…
Cancel
Save