Skip to content

Instantly share code, notes, and snippets.

@changx03
Last active May 19, 2019 05:53
Show Gist options
  • Save changx03/2929828f24787735e74a10f0b10ac404 to your computer and use it in GitHub Desktop.
Save changx03/2929828f24787735e74a10f0b10ac404 to your computer and use it in GitHub Desktop.
Vagrant provision web bash
#!/bin/bash
echo "Starting Provision:" $1
sudo apt-get update
sudo apt-get install -y nginx
sudo nginx -t
sudo touch /var/www/html/index.html
echo "<h1>Hello " $1 "</h1>" >> /var/www/html/index.html
echo "Provision " $1 " completed"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment