mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 09:53:02 -04:00
9 lines
253 B
Plaintext
Executable File
9 lines
253 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if ! apk info 2>&1 | grep -q "ffmpeg"; then
|
|
echo "**** adding ffmpeg to package install list ****"
|
|
echo "ffmpeg" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** ffmpeg already installed, skipping ****"
|
|
fi
|