mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 01:46:10 -04:00
11 lines
301 B
Plaintext
Executable File
11 lines
301 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
perl_executable_path=$(which perl)
|
|
if [ -x "$perl_executable_path" ] ; then
|
|
echo "**** perl5 already installed, skipping ****"
|
|
else
|
|
echo "**** Adding perl5 and its deps to package install lists ****"
|
|
echo "perl\
|
|
" >> /mod-repo-packages-to-install.list
|
|
fi
|