Created
April 20, 2016 21:22
-
-
Save cnk/5c322d34db573b4bacc3b816433bd09a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant provision | |
==> default: Running provisioner: salt... | |
Copying salt minion config to vm. | |
Checking if salt-minion is installed | |
salt-minion was not found. | |
Checking if salt-call is installed | |
salt-call was not found. | |
Using Bootstrap Options: -F -c /tmp stable | |
Bootstrapping Salt... (this may take a while) | |
mesg: | |
ttyname failed | |
: | |
Inappropriate ioctl for device | |
Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 | |
* INFO: sh -- Version 2016.04.18 | |
* WARN: Running the unstable version of bootstrap-salt.sh | |
* INFO: System Information: | |
* INFO: CPU: GenuineIntel | |
* INFO: CPU Arch: x86_64 | |
* INFO: OS Name: Linux | |
* INFO: OS Version: 4.4.0-15-generic | |
* INFO: Distribution: Ubuntu 16.04 | |
* INFO: Installing minion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure(2) do |config| | |
config.vm.box = "boxcutter/ubuntu1604" | |
config.vm.hostname = "dev-#{ENV['USER']}" | |
config.vm.network "private_network", ip: "10.1.99.100" | |
config.vm.provider "virtualbox" do |vbox| | |
vbox.name = "dev-#{ENV['USER']}" | |
end | |
config.vm.synced_folder "./", "/srv/salt/" | |
config.vm.provision :salt do |salt| | |
salt.install_type = 'stable' | |
salt.verbose = true | |
salt.minion_config = "minion" | |
salt.run_highstate = true | |
salt.colorize = true | |
# salt.log_level = 'info' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment