Merge remote-tracking branch 'origin/master' into merge-branch
[netvirt.git] / resources / puppet / manifests / devstack-compute.pp
1 vcsrepo { "/home/vagrant/devstack":
2     provider => git,
3     ensure => present,
4     user => "vagrant",
5     source => "https://github.com/openstack-dev/devstack.git",
6     before => File['/home/vagrant/devstack/local.conf']
7 }
8
9 $hosts = hiera('hosts')
10
11 file { "/home/vagrant/devstack/local.conf":
12     ensure => present,
13     owner => "vagrant",
14     group => "vagrant",
15     content => template('/vagrant/resources/puppet/templates/compute.local.conf.erb')
16 }