git dep added to puppet
This commit is contained in:
parent
c8c34df277
commit
2a639c2f3b
1 changed files with 8 additions and 1 deletions
|
@ -3,6 +3,8 @@ exec { 'echo this works': }
|
|||
|
||||
group { 'puppet': ensure => 'present' }
|
||||
|
||||
exec { 'chown -R vagrant:vagrant /home/vagrant/': }
|
||||
|
||||
exec { 'apt-get update':
|
||||
command => '/usr/bin/apt-get update',
|
||||
}
|
||||
|
@ -18,6 +20,11 @@ package { 'python-software-properties':
|
|||
require => Exec['apt-get update'],
|
||||
}
|
||||
|
||||
package { 'git':
|
||||
ensure => present,
|
||||
require => Exec['apt-get update'],
|
||||
}
|
||||
|
||||
package { 'golang':
|
||||
ensure => present,
|
||||
require => Exec['go_repo'],
|
||||
|
|
Loading…
Reference in a new issue