Files
2022-08-18 10:53:59 -04:00

9 lines
231 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
if [ ! -f "/usr/bin/rsync" ]; then
echo "**** Adding rsync to package install list ****"
echo "rsync" >> /mod-repo-packages-to-install.list
else
echo "**** rsync already installed ****"
fi