Last active
April 3, 2019 20:25
-
-
Save invalidusrname/5207265 to your computer and use it in GitHub Desktop.
technekes devbox
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.define "dev" do |config| | |
config.vm.box = "precise64" | |
config.vm.box_url = "http://files.vagrantup.com/precise64_vmware_fusion.box" | |
config.vm.hostname = "technekes-dev" | |
config.vm.network :public_network | |
config.vm.synced_folder "./apps", "/var/apps" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[dev] Enabling and configuring shared folders...
[dev] -- vagrant-root: /Users/mmcmahand/work/technekes/devbox
[dev] -- /var/apps: /Users/mmcmahand/work/technekes/devbox/apps
[dev] -- /var/gems: /Users/mmcmahand/work/technekes/devbox/gems
then I try to run puppet:
Got 1 failure(s) while initializing: change from 501 to puppet failed: Failed to set owner to '103': Operation not permitted - /vagrant/puppet/ssl
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
chmod +x /tmp/vagrant-shell && /tmp/vagrant-shell
mmcmahand@Matthews-Mac-mini:~/work/technekes/devbox (master) $ vagrant ssh