Beaker: install APT repo with openstack_extras

Use openstack_extras module to manage Ubuntu Cloud Archive repository.

Change-Id: I233fa640e601f180c57c991e9e0a4f3bb8867709
This commit is contained in:
Emilien Macchi 2015-05-15 12:58:34 -04:00
parent b29ee6f706
commit 3f2ec9002a
2 changed files with 4 additions and 10 deletions

View File

@ -9,17 +9,10 @@ describe 'basic neutron' do
Exec { logoutput => 'on_failure' }
include ::apt
apt::source { 'trusty-updates-kilo':
location => 'http://ubuntu-cloud.archive.canonical.com/ubuntu/',
release => 'trusty-updates',
required_packages => 'ubuntu-cloud-keyring',
repos => 'kilo/main',
trusted_source => true,
} ~>
exec { '/usr/bin/apt-get -y dist-upgrade':
refreshonly => true,
class { '::openstack_extras::repo::debian::ubuntu':
release => 'kilo',
package_require => true,
}
Apt::Source['trusty-updates-kilo'] -> Package<| |>
class { '::mysql::server': }

View File

@ -37,6 +37,7 @@ RSpec.configure do |c|
shell('git clone https://git.openstack.org/stackforge/puppet-openstacklib /etc/puppet/modules/openstacklib')
shell('git clone https://git.openstack.org/stackforge/puppet-vswitch /etc/puppet/modules/vswitch')
shell('git clone https://git.openstack.org/stackforge/puppet-keystone /etc/puppet/modules/keystone')
shell('git clone https://git.openstack.org/stackforge/puppet-openstack_extras /etc/puppet/modules/openstack_extras')
# Install the module being tested
puppet_module_install(:source => proj_root, :module_name => 'neutron')