Skip to content

Commit

Permalink
Manually installs puppet dependencies.
Browse files Browse the repository at this point in the history
I don't know what changed, but it automatically installed puppet
dependencies on my computer. On another computer, it doesn't. So I
manually install them every time.
  • Loading branch information
ralt committed Feb 21, 2014
1 parent 79e8436 commit bd63e08
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Vagrantfile
Expand Up @@ -7,6 +7,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision :shell do |shell|
# --force is used to prevent errors when provisioning an existing machine
shell.inline = "mkdir -p /etc/puppet/modules;
puppet module install puppetlabs/stdlib --force;
puppet module install ripienaar/concat --force;
puppet module install maestrodev/wget --force;
puppet module install puppetlabs/gcc --force;
puppet module install puppetlabs/apt --force;
puppet module install puppetlabs/postgresql --force;
puppet module install thomasvandoren/redis --force"
Expand Down

0 comments on commit bd63e08

Please sign in to comment.