fix init name

This commit is contained in:
aptalca
2022-08-02 10:40:09 -04:00
parent aafd9e06ac
commit 75e1c9cf77
7 changed files with 1 additions and 1 deletions
@@ -0,0 +1,15 @@
#!/usr/bin/with-contenv bash
echo "*** AWSCLI Installer ***"
echo "Checking if awscli is installed"
if ! aws -v COMMAND &> /dev/null; then
echo "**** awscli not installed, adding to packages to be installed ****"
echo "awscli" >> /mod-pip-packages-to-install.list
if ! pip3 -v COMMAND &> /dev/null; then
echo "*** Pip not installed, adding to packages to be installed ****"
echo "python3 python3-pip" >> /mod-repo-packages-to-install.list
fi
else
echo "awscli already installed, skipping!"
fi