File tree Expand file tree Collapse file tree 6 files changed +13
-7
lines changed
images/macos/provision/core Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash -e -o pipefail
22
3- brew install httpd
3+ source ~ /utils/utils.sh
4+
5+ brew_smart_install httpd
46sudo sed -Ei ' ' ' s/Listen .*/Listen 80/' $( brew --prefix) /etc/httpd/httpd.conf
57
68invoke_tests " WebServers" " Apache"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ sudo installer -pkg /tmp/AWSCLIV2.pkg -target /
88
99echo Installing aws sam cli...
1010brew tap aws/tap
11- brew install aws-sam-cli
11+ brew_smart_install aws-sam-cli
1212
1313echo " Install aws cli session manager"
1414brew install --cask session-manager-plugin
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ arch=$(get_arch)
44
55# Check MacOS architecture and if ARM install using brew
66if [ $arch == " arm64" ]; then
7- brew install azcopy
7+ brew_smart_install azcopy
88else
99 AZCOPY_DOWNLOAD_URL=" https://aka.ms/downloadazcopy-v10-mac"
1010
Original file line number Diff line number Diff line change 11#! /bin/bash -e -o pipefail
22
3+ source ~ /utils/utils.sh
4+
35echo Installing bicep cli...
46brew tap azure/bicep
5- brew install bicep
7+ brew_smart_install bicep
68
79invoke_tests " Common" " Bicep"
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ brew analytics off
2727
2828# jq is required for further installation scripts
2929echo " Installing jq..."
30- brew install jq
30+ brew_smart_install jq
3131
3232echo " Installing curl..."
33- brew install curl
33+ brew_smart_install curl
3434
3535echo " Installing wget..."
3636brew_smart_install " wget"
Original file line number Diff line number Diff line change 11#! /bin/bash -e -o pipefail
22
3- brew install nginx
3+ source ~ /utils/utils.sh
4+
5+ brew_smart_install nginx
46sudo sed -Ei ' ' ' s/listen.*/listen 80;/' $( brew --prefix) /etc/nginx/nginx.conf
57
68invoke_tests " WebServers" " Nginx"
You can’t perform that action at this time.
0 commit comments