This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Install Build Tools | |
sudo /bin/date +%H:%M:%S > /home/$5/install.progress.txt | |
echo "ooooo FULL INSTALL ooooo" >> /home/$5/install.progress.txt | |
echo "Installing build-essential package" >> /home/$5/install.progress.txt | |
sudo apt-get -y install build-essential | |
sudo /bin/date +%H:%M:%S >> /home/$5/install.progress.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KEYVAULT_NAME=donovankv | |
RESOURCEGROUP=donovan | |
MY_SECRET_VALUE=donovan | |
FUNCTIONAPP_STORAGEACCOUNT_NAME=donovanstore | |
LOCATION=westeurope | |
FUNCTIONAPP_NAME=donovanfa | |
. ./resources.sh |