# Copyright 2014 OpenStack Foundation. # Copyright 2014 Hewlett-Packard Development Company, L.P. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # load additional modules from modules.env # modules.env should exist in the same folder as install_modules.sh # # - use export MODULE_FILE to specify an alternate config # when calling install_modules.sh. # This allows for testing environments that are configured with alternate # module configuration. MODULES["puppetlabs-ntp"]="0.2.0" # freenode #puppet 2012-09-25: # 18:25 < jeblair> i would like to use some code that someone wrote, # but it's important that i understand how the author wants me to use # it... # 18:25 < jeblair> in the case of the vcsrepo module, there is # ambiguity, and so we are trying to determine what the author(s) # intent is # 18:30 < jamesturnbull> jeblair: since we - being PL - are the author # - our intent was not to limit it's use and it should be Apache # licensed MODULES["openstackci-vcsrepo"]="0.0.8" MODULES["puppetlabs-apache"]="0.0.4" MODULES["puppetlabs-apt"]="1.4.2" MODULES["puppetlabs-haproxy"]="0.4.1" MODULES["puppetlabs-mysql"]="0.6.1" MODULES["puppetlabs-postgresql"]="4.0.0" MODULES["puppetlabs-stdlib"]="4.3.2" MODULES["saz-memcached"]="2.0.2" MODULES["spiette-selinux"]="0.5.1" MODULES["rafaelfc-pear"]="1.0.3" MODULES["puppetlabs-inifile"]="1.0.0" MODULES["puppetlabs-firewall"]="0.0.4" MODULES["puppetlabs-puppetdb"]="3.0.1" MODULES["stankevich-python"]="1.6.6" MODULES["puppetlabs-rabbitmq"]="4.0.0" # Source modules should use tags, explicit refs or remote branches because # we do not update local branches in this script. SOURCE_MODULES["https://github.com/puppet-community/puppet-module-puppetboard"]="2.4.0" # Add modules that should be part of the openstack-infra integration test here INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-elasticsearch"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-storyboard"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-kibana"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-lodgeit"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-jenkins"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-pip"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-github"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-httpd"]="origin/master" if [[ "$PUPPET_INTEGRATION_TEST" -ne "1" ]]; then # If puppet integration tests are not being run, merge SOURCE and INTEGRATION modules for MOD in ${!INTEGRATION_MODULES[*]}; do SOURCE_MODULES[$MOD]=${INTEGRATION_MODULES[$MOD]} done fi