feat: check for slirp4netns tool during setup (needed for rootless Podman)

This commit is contained in:
Settel 2023-06-04 11:40:31 +02:00
parent e4114837c4
commit fcfed00d5b

View File

@ -9,7 +9,9 @@ info:
setup: setup:
@echo "I checking for tools" @echo "I checking for tools"
@for binary in go go-bindata tmux node yarn npx podman pexec inotifyloop inotifywait newuidmap; do \ @for binary in go go-bindata tmux node yarn npx \
pexec inotifyloop inotifywait \
podman newuidmap slirp4netns; do \
echo -n " $$binary: " ; \ echo -n " $$binary: " ; \
if ! which "$$binary"; then \ if ! which "$$binary"; then \
echo "not found" ;\ echo "not found" ;\