Skip to content

Commit

Permalink
strace failing command
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Harding <[email protected]>
  • Loading branch information
klutchell committed Mar 1, 2024
1 parent e43f9a5 commit aa80fc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/healthcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ case $(id -u) in
iptables-nft -L
iptables-nft -N DOCKER-ISOLATION-STAGE-1
iptables-nft -L
iptables-nft -I DOCKER-ISOLATION-STAGE-1 -j RETURN
strace iptables-nft -I DOCKER-ISOLATION-STAGE-1 -j RETURN
fi
;;
*) ;;
Expand Down
4 changes: 2 additions & 2 deletions test/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ubuntu | debian)

# install packages required by healthchecks
apt-get update
apt-get install -y ca-certificates cpu-checker curl gnupg iproute2 iptables iputils-ping kmod util-linux nfs-common cachefilesd
apt-get install -y ca-certificates cpu-checker curl gnupg iproute2 iptables iputils-ping kmod util-linux nfs-common cachefilesd strace

# Add Docker's official GPG key
install -m 0755 -d /etc/apt/keyrings
Expand Down Expand Up @@ -53,7 +53,7 @@ ubuntu | debian)
;;
alpine)
# install packages required by healthchecks
apk add --no-cache bash ca-certificates curl docker iproute2 iputils-ping kmod lsblk util-linux nfs-utils
apk add --no-cache bash ca-certificates curl docker iproute2 iputils-ping kmod lsblk util-linux nfs-utils strace

# create nonroot user for healthchecks
adduser --disabled-password --gecos "" nonroot
Expand Down

0 comments on commit aa80fc1

Please sign in to comment.