mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Update Vagrantfile to autoprovision
This commit is contained in:
parent
c782ac9f6e
commit
b4be5cd561
3 changed files with 3 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
/.project
|
/.project
|
||||||
*.swp
|
*.swp
|
||||||
|
.vagrant
|
||||||
|
|
|
@ -385,8 +385,6 @@ Ubuntu box. First, install Vagrant, then::
|
||||||
|
|
||||||
$ vagrant up
|
$ vagrant up
|
||||||
$ vagrant ssh
|
$ vagrant ssh
|
||||||
<vm> $ cd /salt_bootstrap
|
|
||||||
<vm> $ sudo sh salt-bootstrap.sh
|
|
||||||
|
|
||||||
|
|
||||||
.. _Vagrant: http://www.vagrantup.com
|
.. _Vagrant: http://www.vagrantup.com
|
||||||
|
|
3
Vagrantfile
vendored
3
Vagrantfile
vendored
|
@ -10,7 +10,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
# please see the online documentation at vagrantup.com.
|
# please see the online documentation at vagrantup.com.
|
||||||
|
|
||||||
# Every Vagrant virtual environment requires a box to build off of.
|
# Every Vagrant virtual environment requires a box to build off of.
|
||||||
config.vm.box = "precise64"
|
config.vm.box = "ubuntu/precise64"
|
||||||
|
|
||||||
# The url from where the 'config.vm.box' box will be fetched if it
|
# The url from where the 'config.vm.box' box will be fetched if it
|
||||||
# doesn't already exist on the user's system.
|
# doesn't already exist on the user's system.
|
||||||
|
@ -40,6 +40,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
# argument is a set of non-required options.
|
# argument is a set of non-required options.
|
||||||
config.vm.synced_folder ".", "/salt_bootstrap"
|
config.vm.synced_folder ".", "/salt_bootstrap"
|
||||||
|
|
||||||
|
config.vm.provision "shell", path: "bootstrap-salt.sh"
|
||||||
# Provider-specific configuration so you can fine-tune various
|
# Provider-specific configuration so you can fine-tune various
|
||||||
# backing providers for Vagrant. These expose provider-specific options.
|
# backing providers for Vagrant. These expose provider-specific options.
|
||||||
# Example for VirtualBox:
|
# Example for VirtualBox:
|
||||||
|
|
Loading…
Add table
Reference in a new issue