mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 09:53:02 -04:00
12 lines
351 B
Plaintext
Executable File
12 lines
351 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if ! apk info --installed ttf-dejavu >/dev/null; then
|
|
echo "**** Adding firefox-fonts packages to install list ****"
|
|
echo "\
|
|
ttf-dejavu \
|
|
font-noto-emoji \
|
|
font-croscore" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** Firefox-fonts packages already installed, skipping ****"
|
|
fi
|