Update and rename 98-tshoot-config to 95-tshoot-config

This commit is contained in:
Eric Nemchik
2020-10-14 19:47:37 -05:00
committed by GitHub
parent eadfff8043
commit 95778a1f13
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/with-contenv bash
## Ubuntu
if [ -f /usr/bin/apt ]; then
apt-get update
apt-get install --no-install-recommends -y \
dnsutils \
net-tools \
iputils-ping \
traceroute
fi
# Alpine
if [ -f /sbin/apk ]; then
apk add --no-cache \
bind-tools \
net-tools
fi