Skip to content

Commit

Permalink
Install build-essential on ground-up provisioning
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 committed May 24, 2021
1 parent f1c2442 commit cf42d8a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion iterative/resource_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ systemctl disable apt-daily-upgrade.service
sudo add-apt-repository universe -y
sudo add-apt-repository ppa:git-core/ppa -y
sudo apt update && sudo apt install -y software-properties-common git
sudo apt update && sudo apt install -y software-properties-common git build-essential
sudo curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.sh
sudo usermod -aG docker ubuntu
Expand Down
2 changes: 1 addition & 1 deletion iterative/testdata/script_template_cloud_aws.golden
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ systemctl disable apt-daily-upgrade.service

sudo add-apt-repository universe -y
sudo add-apt-repository ppa:git-core/ppa -y
sudo apt update && sudo apt install -y software-properties-common git
sudo apt update && sudo apt install -y software-properties-common git build-essential

sudo curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.sh
sudo usermod -aG docker ubuntu
Expand Down
2 changes: 1 addition & 1 deletion iterative/testdata/script_template_cloud_azure.golden
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ systemctl disable apt-daily-upgrade.service

sudo add-apt-repository universe -y
sudo add-apt-repository ppa:git-core/ppa -y
sudo apt update && sudo apt install -y software-properties-common git
sudo apt update && sudo apt install -y software-properties-common git build-essential

sudo curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.sh
sudo usermod -aG docker ubuntu
Expand Down
2 changes: 1 addition & 1 deletion iterative/testdata/script_template_cloud_invalid.golden
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ systemctl disable apt-daily-upgrade.service

sudo add-apt-repository universe -y
sudo add-apt-repository ppa:git-core/ppa -y
sudo apt update && sudo apt install -y software-properties-common git
sudo apt update && sudo apt install -y software-properties-common git build-essential

sudo curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.sh
sudo usermod -aG docker ubuntu
Expand Down

0 comments on commit cf42d8a

Please sign in to comment.