From c4a1f29134f4b29c5b87c6e2a257c77479bf4e27 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Wed, 28 May 2014 01:04:01 -0400 Subject: [PATCH] require update --- .gitignore | 1 + .vagrant/machines/default/virtualbox/action_provision | 1 - .vagrant/machines/default/virtualbox/action_set_name | 1 - .vagrant/machines/default/virtualbox/id | 1 - Vagrantfile | 2 +- puppet/modules/devPackages/manifests/init.pp | 3 ++- puppet/modules/ubuntuDesktop/manifests/init.pp | 3 ++- 7 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 .gitignore delete mode 100644 .vagrant/machines/default/virtualbox/action_provision delete mode 100644 .vagrant/machines/default/virtualbox/action_set_name delete mode 100644 .vagrant/machines/default/virtualbox/id diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71b95ef --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vagrant/ diff --git a/.vagrant/machines/default/virtualbox/action_provision b/.vagrant/machines/default/virtualbox/action_provision deleted file mode 100644 index e3087a3..0000000 --- a/.vagrant/machines/default/virtualbox/action_provision +++ /dev/null @@ -1 +0,0 @@ -1.5:c1c2530a-458f-4ba2-a351-f5cd1f0b4cfa \ No newline at end of file diff --git a/.vagrant/machines/default/virtualbox/action_set_name b/.vagrant/machines/default/virtualbox/action_set_name deleted file mode 100644 index 754cbd6..0000000 --- a/.vagrant/machines/default/virtualbox/action_set_name +++ /dev/null @@ -1 +0,0 @@ -1401252377 \ No newline at end of file diff --git a/.vagrant/machines/default/virtualbox/id b/.vagrant/machines/default/virtualbox/id deleted file mode 100644 index 7df2c88..0000000 --- a/.vagrant/machines/default/virtualbox/id +++ /dev/null @@ -1 +0,0 @@ -c1c2530a-458f-4ba2-a351-f5cd1f0b4cfa \ No newline at end of file diff --git a/Vagrantfile b/Vagrantfile index 3d2499a..14c4530 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,7 +8,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = box config.vm.box_url = url config.vm.host_name = hostname - + config.vm.network :public_network config.vm.provider "virtualbox" do |v| v.memory = ram diff --git a/puppet/modules/devPackages/manifests/init.pp b/puppet/modules/devPackages/manifests/init.pp index a62e3c6..2c05f07 100644 --- a/puppet/modules/devPackages/manifests/init.pp +++ b/puppet/modules/devPackages/manifests/init.pp @@ -4,6 +4,7 @@ class devPackages { package { "DevPackages": name=>$Packages, - ensure => "installed" + ensure => "installed", + require => Exec["apt-get update"] } } \ No newline at end of file diff --git a/puppet/modules/ubuntuDesktop/manifests/init.pp b/puppet/modules/ubuntuDesktop/manifests/init.pp index 89e8033..ac790f9 100644 --- a/puppet/modules/ubuntuDesktop/manifests/init.pp +++ b/puppet/modules/ubuntuDesktop/manifests/init.pp @@ -4,6 +4,7 @@ class ubuntuDesktop { package { "UbuntuDesktopPackages" : name=>$UbuntuDesktop, - ensure => "installed" + ensure => "installed", + require => Exec["apt-get update"] } } \ No newline at end of file