Files
2022-12-27 00:24:33 +00:00

11 lines
301 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
perl_executable_path=$(which perl)
if [ -x "$perl_executable_path" ] ; then
echo "**** Adding perl5 and its deps to package install lists ****"
echo "perl\
" >> /mod-repo-packages-to-install.list
else
echo "**** perl5 already installed, skipping ****"
fi