diff --git a/Vagrantfile b/Vagrantfile index f1cb02b..a18976d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -26,10 +26,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provider :virtualbox do |v| # Name this virtual machine so it can be easily located. - v.name = "AngularJs - with puppet, yeoman, bower, node.js, and grunt." + v.name = "yo-angular" # Customize memory allocation - v.customize ["modifyvm", :id, "--memory", "2048"] + v.customize ["modifyvm", :id, "--memory", "512"] v.customize ["modifyvm", :id, "--cpus", "1"] end diff --git a/manifests/default.pp b/manifests/default.pp index d32d861..2ecf901 100644 --- a/manifests/default.pp +++ b/manifests/default.pp @@ -42,12 +42,12 @@ } package { "npm": - ensure => "installed", + ensure => "present", require => Exec [ "apt-get update" ] } package { "nodejs": - ensure => "installed", + ensure => "present", require => Exec [ "apt-get update" ] }