Files
docker-mods-uptime-kuma-tim…/root/etc/s6-overlay/s6-rc.d/init-mods-tshoot/run
T
2022-07-30 16:27:58 +01:00

18 lines
333 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
## Ubuntu
if [ -f /usr/bin/apt ]; then
echo "\
dnsutils \
net-tools \
iputils-ping \
traceroute" >> /mod-repo-packages-to-install.list
fi
# Alpine
if [ -f /sbin/apk ]; then
echo "\
bind-tools \
net-tools" >> /mod-repo-packages-to-install.list
fi