mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-18 08:48:27 -04:00
20 lines
453 B
Plaintext
Executable File
20 lines
453 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
## Ubuntu
|
|
if [ -f /usr/bin/apt ]; then
|
|
echo "**** Adding tshoot packages to install list ****"
|
|
echo "\
|
|
dnsutils \
|
|
net-tools \
|
|
iputils-ping \
|
|
traceroute" >> /mod-repo-packages-to-install.list
|
|
|
|
fi
|
|
# Alpine
|
|
if [ -f /sbin/apk ]; then
|
|
echo "**** Adding tshoot packages to install list ****"
|
|
echo "\
|
|
bind-tools \
|
|
net-tools" >> /mod-repo-packages-to-install.list
|
|
fi
|