Skip to content

Commit

Permalink
Fix Vagrant provisioning scripts for Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardobaitello committed Apr 25, 2021
1 parent ac2c7a8 commit a7c03b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kubernetes-hardway/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ end
NODE_SCRIPT = <<EOF.freeze
echo "Preparing node..."
# Install chef client
wget https://omnitruck.chef.io/install.sh | sudo bash -s -- -v 16.12
wget -O - https://omnitruck.chef.io/install.sh | sudo bash -s -- -v 16.12
EOF

def set_hostname(server)
Expand Down
2 changes: 1 addition & 1 deletion php-apache-mysql/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ end
NODE_SCRIPT = <<EOF.freeze
echo "Preparing node..."
# Install chef client
wget https://omnitruck.chef.io/install.sh | sudo bash -s -- -v 16.12
wget -O - https://omnitruck.chef.io/install.sh | sudo bash -s -- -v 16.12
EOF

def set_hostname(server)
Expand Down

0 comments on commit a7c03b5

Please sign in to comment.