1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #42324 from AkihiroSuda/whichless-2010

[20.10 backport] dockerd-rootless.sh: use `command -v` instead of `which`
This commit is contained in:
Tianon Gravi 2021-04-26 12:47:40 -07:00 committed by GitHub
commit ce82693823
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ fi
rootlesskit=""
for f in docker-rootlesskit rootlesskit; do
if which $f > /dev/null 2>&1; then
if command -v $f > /dev/null 2>&1; then
rootlesskit=$f
break
fi
@ -53,7 +53,7 @@ fi
net=$DOCKERD_ROOTLESS_ROOTLESSKIT_NET
mtu=$DOCKERD_ROOTLESS_ROOTLESSKIT_MTU
if [ -z $net ]; then
if which slirp4netns > /dev/null 2>&1; then
if command -v slirp4netns > /dev/null 2>&1; then
# If --netns-type is present in --help, slirp4netns is >= v0.4.0.
if slirp4netns --help | grep -qw -- --netns-type; then
net=slirp4netns
@ -65,7 +65,7 @@ if [ -z $net ]; then
fi
fi
if [ -z $net ]; then
if which vpnkit > /dev/null 2>&1; then
if command -v vpnkit > /dev/null 2>&1; then
net=vpnkit
else
echo "Either slirp4netns (>= v0.4.0) or vpnkit needs to be installed"