Fix mod/mods naming

This commit is contained in:
TheSpad
2022-08-01 14:54:45 +01:00
parent 4753708baa
commit 57f9cd9020
7 changed files with 1 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/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