├── .gitignore ├── .gitreview ├── .travis.sh ├── .travis.yml ├── BUILDING.md ├── CONTRIBUTING.md ├── Gemfile ├── Puppetfile ├── README.md ├── Rakefile ├── aodh ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── aodh.pp ├── lib │ └── puppet │ │ ├── provider │ │ └── aodh_config │ │ │ └── ini_setting.rb │ │ └── type │ │ └── aodh_config.rb ├── manifests │ ├── api.pp │ ├── auth.pp │ ├── client.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── evaluator.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── listener.pp │ ├── logging.pp │ ├── notifier.pp │ ├── params.pp │ ├── policy.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── gnocchi-1aff76df364ba03a.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mongodb_support-d32111a0380f0d21.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── aodh_wsgi_apache_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── aodh_api_spec.rb │ │ ├── aodh_auth_spec.rb │ │ ├── aodh_client_spec.rb │ │ ├── aodh_db_mysql_spec.rb │ │ ├── aodh_db_postgresql_spec.rb │ │ ├── aodh_db_spec.rb │ │ ├── aodh_evaluator_spec.rb │ │ ├── aodh_init_spec.rb │ │ ├── aodh_keystone_auth_spec.rb │ │ ├── aodh_listener_spec.rb │ │ ├── aodh_logging_spec.rb │ │ ├── aodh_notifier_spec.rb │ │ ├── aodh_policy_spec.rb │ │ └── aodh_wsgi_apache_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ └── aodh_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ └── aodh_config_spec.rb ├── test-requirements.txt ├── tests │ └── init.pp └── tox.ini ├── apache ├── .fixtures.yml ├── .geppetto-rc.json ├── .gitattributes ├── .gitignore ├── .nodeset.yml ├── .puppet-lint.rc ├── .rspec ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.md ├── Rakefile ├── examples │ ├── apache.pp │ ├── dev.pp │ ├── init.pp │ ├── mod_load_params.pp │ ├── mods.pp │ ├── mods_custom.pp │ ├── php.pp │ ├── vhost.pp │ ├── vhost_directories.pp │ ├── vhost_filter.pp │ ├── vhost_ip_based.pp │ ├── vhost_proxypass.pp │ ├── vhost_ssl.pp │ └── vhosts_without_listen.pp ├── files │ └── httpd ├── lib │ ├── facter │ │ └── apache_version.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ ├── bool2httpd.rb │ │ │ ├── enclose_ipv6.rb │ │ │ └── validate_apache_log_level.rb │ │ ├── provider │ │ ├── a2mod.rb │ │ └── a2mod │ │ │ ├── a2mod.rb │ │ │ ├── gentoo.rb │ │ │ ├── modfix.rb │ │ │ └── redhat.rb │ │ └── type │ │ └── a2mod.rb ├── manifests │ ├── balancer.pp │ ├── balancermember.pp │ ├── confd │ │ └── no_accf.pp │ ├── custom_config.pp │ ├── default_confd_files.pp │ ├── default_mods.pp │ ├── default_mods │ │ └── load.pp │ ├── dev.pp │ ├── fastcgi │ │ └── server.pp │ ├── init.pp │ ├── listen.pp │ ├── mod.pp │ ├── mod │ │ ├── actions.pp │ │ ├── alias.pp │ │ ├── auth_basic.pp │ │ ├── auth_cas.pp │ │ ├── auth_kerb.pp │ │ ├── auth_mellon.pp │ │ ├── authn_core.pp │ │ ├── authn_file.pp │ │ ├── authnz_ldap.pp │ │ ├── authz_default.pp │ │ ├── authz_user.pp │ │ ├── autoindex.pp │ │ ├── cache.pp │ │ ├── cgi.pp │ │ ├── cgid.pp │ │ ├── dav.pp │ │ ├── dav_fs.pp │ │ ├── dav_svn.pp │ │ ├── deflate.pp │ │ ├── dev.pp │ │ ├── dir.pp │ │ ├── disk_cache.pp │ │ ├── event.pp │ │ ├── expires.pp │ │ ├── ext_filter.pp │ │ ├── fastcgi.pp │ │ ├── fcgid.pp │ │ ├── filter.pp │ │ ├── geoip.pp │ │ ├── headers.pp │ │ ├── include.pp │ │ ├── info.pp │ │ ├── itk.pp │ │ ├── ldap.pp │ │ ├── mime.pp │ │ ├── mime_magic.pp │ │ ├── negotiation.pp │ │ ├── nss.pp │ │ ├── pagespeed.pp │ │ ├── passenger.pp │ │ ├── perl.pp │ │ ├── peruser.pp │ │ ├── php.pp │ │ ├── prefork.pp │ │ ├── proxy.pp │ │ ├── proxy_ajp.pp │ │ ├── proxy_balancer.pp │ │ ├── proxy_connect.pp │ │ ├── proxy_html.pp │ │ ├── proxy_http.pp │ │ ├── python.pp │ │ ├── remoteip.pp │ │ ├── reqtimeout.pp │ │ ├── rewrite.pp │ │ ├── rpaf.pp │ │ ├── security.pp │ │ ├── setenvif.pp │ │ ├── shib.pp │ │ ├── speling.pp │ │ ├── ssl.pp │ │ ├── status.pp │ │ ├── suexec.pp │ │ ├── suphp.pp │ │ ├── userdir.pp │ │ ├── version.pp │ │ ├── vhost_alias.pp │ │ ├── worker.pp │ │ ├── wsgi.pp │ │ └── xsendfile.pp │ ├── mpm.pp │ ├── namevirtualhost.pp │ ├── package.pp │ ├── params.pp │ ├── peruser │ │ ├── multiplexer.pp │ │ └── processor.pp │ ├── php.pp │ ├── proxy.pp │ ├── python.pp │ ├── security │ │ └── rule_link.pp │ ├── service.pp │ ├── ssl.pp │ ├── version.pp │ ├── vhost.pp │ └── vhost │ │ └── custom.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── apache_parameters_spec.rb │ │ ├── apache_ssl_spec.rb │ │ ├── class_spec.rb │ │ ├── custom_config_spec.rb │ │ ├── default_mods_spec.rb │ │ ├── itk_spec.rb │ │ ├── mod_dav_svn_spec.rb │ │ ├── mod_deflate_spec.rb │ │ ├── mod_fcgid_spec.rb │ │ ├── mod_mime_spec.rb │ │ ├── mod_negotiation_spec.rb │ │ ├── mod_pagespeed_spec.rb │ │ ├── mod_passenger_spec.rb │ │ ├── mod_php_spec.rb │ │ ├── mod_proxy_html_spec.rb │ │ ├── mod_security_spec.rb │ │ ├── mod_suphp_spec.rb │ │ ├── nodesets │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── centos-70-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── debian-70rc1-x64.yml │ │ │ ├── debian-73-i386.yml │ │ │ ├── debian-73-x64.yml │ │ │ ├── debian-82-x64.yml │ │ │ ├── default.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ ├── ubuntu-server-1310-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── prefork_worker_spec.rb │ │ ├── service_spec.rb │ │ ├── version.rb │ │ └── vhost_spec.rb │ ├── classes │ │ ├── apache_spec.rb │ │ ├── dev_spec.rb │ │ ├── mod │ │ │ ├── alias_spec.rb │ │ │ ├── auth_cas_spec.rb │ │ │ ├── auth_kerb_spec.rb │ │ │ ├── auth_mellon_spec.rb │ │ │ ├── authnz_ldap_spec.rb │ │ │ ├── dav_svn_spec.rb │ │ │ ├── deflate_spec.rb │ │ │ ├── dev_spec.rb │ │ │ ├── dir_spec.rb │ │ │ ├── disk_cache.rb │ │ │ ├── event_spec.rb │ │ │ ├── expires_spec.rb │ │ │ ├── ext_filter_spec.rb │ │ │ ├── fastcgi_spec.rb │ │ │ ├── fcgid_spec.rb │ │ │ ├── info_spec.rb │ │ │ ├── itk_spec.rb │ │ │ ├── ldap_spec.rb │ │ │ ├── mime_magic_spec.rb │ │ │ ├── mime_spec.rb │ │ │ ├── negotiation_spec.rb │ │ │ ├── pagespeed_spec.rb │ │ │ ├── passenger_spec.rb │ │ │ ├── perl_spec.rb │ │ │ ├── peruser_spec.rb │ │ │ ├── php_spec.rb │ │ │ ├── prefork_spec.rb │ │ │ ├── proxy_connect_spec.rb │ │ │ ├── proxy_html_spec.rb │ │ │ ├── python_spec.rb │ │ │ ├── remoteip_spec.rb │ │ │ ├── reqtimeout_spec.rb │ │ │ ├── rpaf_spec.rb │ │ │ ├── security_spec.rb │ │ │ ├── shib_spec.rb │ │ │ ├── speling_spec.rb │ │ │ ├── ssl_spec.rb │ │ │ ├── status_spec.rb │ │ │ ├── suphp_spec.rb │ │ │ ├── worker_spec.rb │ │ │ └── wsgi_spec.rb │ │ ├── params_spec.rb │ │ └── service_spec.rb │ ├── defines │ │ ├── balancer_spec.rb │ │ ├── balancermember_spec.rb │ │ ├── custom_config_spec.rb │ │ ├── fastcgi_server_spec.rb │ │ ├── mod_spec.rb │ │ ├── modsec_link_spec.rb │ │ ├── vhost_custom_spec.rb │ │ └── vhost_spec.rb │ ├── fixtures │ │ ├── files │ │ │ ├── negotiation.conf │ │ │ └── spec │ │ ├── modules │ │ │ └── site_apache │ │ │ │ └── templates │ │ │ │ └── fake.conf.erb │ │ └── templates │ │ │ └── negotiation.conf.erb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── apache_version_spec.rb │ │ ├── provider │ │ └── a2mod │ │ │ └── gentoo_spec.rb │ │ └── puppet │ │ └── parser │ │ └── functions │ │ ├── bool2httpd_spec.rb │ │ ├── enclose_ipv6_spec.rb │ │ └── validate_apache_log_level.rb └── templates │ ├── confd │ └── no-accf.conf.erb │ ├── fastcgi │ └── server.erb │ ├── httpd.conf.erb │ ├── listen.erb │ ├── mod │ ├── alias.conf.erb │ ├── auth_cas.conf.erb │ ├── auth_mellon.conf.erb │ ├── authnz_ldap.conf.erb │ ├── autoindex.conf.erb │ ├── cgid.conf.erb │ ├── dav_fs.conf.erb │ ├── deflate.conf.erb │ ├── dir.conf.erb │ ├── disk_cache.conf.erb │ ├── event.conf.erb │ ├── expires.conf.erb │ ├── ext_filter.conf.erb │ ├── fastcgi.conf.erb │ ├── fcgid.conf.erb │ ├── geoip.conf.erb │ ├── info.conf.erb │ ├── itk.conf.erb │ ├── ldap.conf.erb │ ├── load.erb │ ├── mime.conf.erb │ ├── mime_magic.conf.erb │ ├── mpm_event.conf.erb │ ├── negotiation.conf.erb │ ├── nss.conf.erb │ ├── pagespeed.conf.erb │ ├── passenger.conf.erb │ ├── peruser.conf.erb │ ├── php5.conf.erb │ ├── prefork.conf.erb │ ├── proxy.conf.erb │ ├── proxy_html.conf.erb │ ├── remoteip.conf.erb │ ├── reqtimeout.conf.erb │ ├── rpaf.conf.erb │ ├── security.conf.erb │ ├── security_crs.conf.erb │ ├── setenvif.conf.erb │ ├── ssl.conf.erb │ ├── status.conf.erb │ ├── suphp.conf.erb │ ├── userdir.conf.erb │ ├── worker.conf.erb │ └── wsgi.conf.erb │ ├── namevirtualhost.erb │ ├── ports_header.erb │ └── vhost │ ├── _access_log.erb │ ├── _action.erb │ ├── _additional_includes.erb │ ├── _aliases.erb │ ├── _allow_encoded_slashes.erb │ ├── _auth_kerb.erb │ ├── _block.erb │ ├── _charsets.erb │ ├── _custom_fragment.erb │ ├── _directories.erb │ ├── _docroot.erb │ ├── _error_document.erb │ ├── _fallbackresource.erb │ ├── _fastcgi.erb │ ├── _file_footer.erb │ ├── _file_header.erb │ ├── _filters.erb │ ├── _header.erb │ ├── _itk.erb │ ├── _jk_mounts.erb │ ├── _logging.erb │ ├── _passenger.erb │ ├── _passenger_base_uris.erb │ ├── _php.erb │ ├── _php_admin.erb │ ├── _proxy.erb │ ├── _rack.erb │ ├── _redirect.erb │ ├── _requestheader.erb │ ├── _rewrite.erb │ ├── _scriptalias.erb │ ├── _security.erb │ ├── _serveralias.erb │ ├── _serversignature.erb │ ├── _setenv.erb │ ├── _ssl.erb │ ├── _sslproxy.erb │ ├── _suexec.erb │ ├── _suphp.erb │ └── _wsgi.erb ├── cassandra ├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── .travis │ ├── acceptance.sh │ ├── destroy.rb │ ├── payload.sh │ ├── provision.rb │ └── secrets.tar.enc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── files │ └── CASSANDRA-9822 │ │ └── cassandra ├── images │ ├── bkg.png │ ├── blacktocat.png │ └── plantuml_2015-10-10T14-14-16.png ├── index.html ├── javascripts │ └── main.js ├── manifests │ ├── datastax_agent.pp │ ├── datastax_repo.pp │ ├── firewall_ports.pp │ ├── firewall_ports │ │ └── rule.pp │ ├── init.pp │ ├── java.pp │ ├── opscenter.pp │ ├── opscenter │ │ ├── cluster_name.pp │ │ ├── pycrypto.pp │ │ └── setting.pp │ └── optutils.pp ├── metadata.json ├── params.json ├── spec │ ├── acceptance │ │ ├── cassandra_spec.rb │ │ └── nodesets │ │ │ ├── centos6.yml │ │ │ ├── centos7.yml │ │ │ ├── debian7.yml │ │ │ ├── ubuntu12.04.yml │ │ │ └── ubuntu14.04.yml │ ├── classes │ │ ├── cassandra_debian_spec.rb │ │ ├── cassandra_redhat_spec.rb │ │ ├── cassandra_spec.rb │ │ ├── cassandra_template2_spec.rb │ │ ├── datastax_agent_spec.rb │ │ ├── datastax_repo_spec.rb │ │ ├── firewall_ports_spec.rb │ │ ├── java_spec.rb │ │ ├── opscenter │ │ │ └── pycyrpto_spec.rb │ │ ├── opscenter_spec.rb │ │ └── optutils_spec.rb │ ├── defines │ │ ├── firewall_ports │ │ │ └── rule_spec.rb │ │ └── opscenter │ │ │ ├── cluster_name_spec.rb │ │ │ └── setting_spec.rb │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb ├── stylesheets │ ├── github-dark.css │ ├── github-light.css │ ├── normalize.css │ └── stylesheet.css └── templates │ ├── cassandra.yaml.erb │ └── cassandra1.yaml.erb ├── ceilometer ├── .gitignore ├── .gitreview ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ ├── ceilometer_with_gnocchi.pp │ └── site.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── ceilometer_api_paste_ini │ │ │ └── ini_setting.rb │ │ └── ceilometer_config │ │ │ └── openstackconfig.rb │ │ └── type │ │ ├── ceilometer_api_paste_ini.rb │ │ └── ceilometer_config.rb ├── manifests │ ├── agent │ │ ├── auth.pp │ │ ├── central.pp │ │ ├── compute.pp │ │ ├── notification.pp │ │ └── polling.pp │ ├── alarm │ │ ├── evaluator.pp │ │ └── notifier.pp │ ├── api.pp │ ├── client.pp │ ├── collector.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── dispatcher │ │ └── gnocchi.pp │ ├── expirer.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── params.pp │ ├── policy.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── added_messaging_urls-fbf1309bf1bfafa4.yaml │ │ ├── ceilometer_notifications_messaging_urls-62b27d617a49c609.yaml │ │ ├── deprecate_alarm-273cc49b689fe0a8.yaml │ │ ├── deprecate_old_mongo-5909886c13013bde.yaml │ │ ├── gnocchi-22478d430337227c.yaml │ │ ├── keystone_auth-b821f96e020f9048.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── password_auth_type-810a86921a846b2f.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ ├── use-reno-1caaec4ba5aa4285.yaml │ │ └── workers-2ce7d757e90b0c84.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── ceilometer_with_mysql_spec.rb │ │ ├── ceilometer_wsgi_apache_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── ceilometer_agent_auth_spec.rb │ │ ├── ceilometer_agent_central_spec.rb │ │ ├── ceilometer_agent_compute_spec.rb │ │ ├── ceilometer_agent_notification_spec.rb │ │ ├── ceilometer_agent_polling_spec.rb │ │ ├── ceilometer_api_spec.rb │ │ ├── ceilometer_client_spec.rb │ │ ├── ceilometer_collector_spec.rb │ │ ├── ceilometer_config_spec.rb │ │ ├── ceilometer_db_mysql_spec.rb │ │ ├── ceilometer_db_postgresql_spec.rb │ │ ├── ceilometer_db_spec.rb │ │ ├── ceilometer_db_sync_spec.rb │ │ ├── ceilometer_dispatcher_gnocchi_spec.rb │ │ ├── ceilometer_expirer_spec.rb │ │ ├── ceilometer_init_spec.rb │ │ ├── ceilometer_keystone_auth_spec.rb │ │ ├── ceilometer_logging_spec.rb │ │ ├── ceilometer_policy_spec.rb │ │ └── ceilometer_wsgi_apache_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── ceilometer_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ └── ceilometer_config │ │ │ └── openstackconfig_spec.rb │ │ └── type │ │ ├── ceilometer_api_paste_ini_spec.rb │ │ └── ceilometer_config_spec.rb ├── test-requirements.txt └── tox.ini ├── ceph ├── .fixtures.yml ├── .gitignore ├── .gitreview ├── .nodeset.yml ├── .prefabs.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── USECASES.md ├── examples │ ├── common.yaml │ ├── hiera.yaml │ └── nodes │ │ ├── client.yaml │ │ ├── first.yaml │ │ └── second.yaml ├── lib │ └── puppet │ │ ├── provider │ │ └── ceph_config │ │ │ └── ini_setting.rb │ │ └── type │ │ └── ceph_config.rb ├── manifests │ ├── conf.pp │ ├── init.pp │ ├── key.pp │ ├── keys.pp │ ├── mds.pp │ ├── mon.pp │ ├── mons.pp │ ├── osd.pp │ ├── osds.pp │ ├── params.pp │ ├── pool.pp │ ├── profile │ │ ├── base.pp │ │ ├── client.pp │ │ ├── mon.pp │ │ ├── osd.pp │ │ ├── params.pp │ │ └── rgw.pp │ ├── repo.pp │ ├── rgw.pp │ └── rgw │ │ ├── apache.pp │ │ ├── apache_fastcgi.pp │ │ ├── apache_proxy_fcgi.pp │ │ ├── civetweb.pp │ │ └── keystone.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── first_release-a7268e1c8959eca3.yaml │ │ └── systemd-8b86dee2f9df5a14.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── hammer.rst │ │ ├── index.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── ceph_rgw_civet_spec.rb │ │ ├── ceph_rgw_spec.rb │ │ ├── ceph_usecases_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ ├── two-centos-70-x64.yml │ │ │ ├── two-ubuntu-server-1404-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── ceph_conf_spec.rb │ │ ├── ceph_init_spec.rb │ │ ├── ceph_mds_spec.rb │ │ ├── ceph_mons_spec.rb │ │ ├── ceph_osds_spec.rb │ │ ├── ceph_profile_base_spec.rb │ │ ├── ceph_profile_client_spec.rb │ │ ├── ceph_profile_mon_spec.rb │ │ ├── ceph_profile_osd_spec.rb │ │ ├── ceph_profile_params_spec.rb │ │ ├── ceph_repo_spec.rb │ │ └── ceph_spec.rb │ ├── defines │ │ ├── ceph_key_spec.rb │ │ ├── ceph_mon_spec.rb │ │ ├── ceph_osd_spec.rb │ │ ├── ceph_pool_spec.rb │ │ ├── ceph_rgw_apache_fastcgi_spec.rb │ │ ├── ceph_rgw_apache_proxy_fcgi_spec.rb │ │ ├── ceph_rgw_apache_spec.rb │ │ ├── ceph_rgw_civetweb_spec.rb │ │ ├── ceph_rgw_keystone_spec.rb │ │ └── ceph_rgw_spec.rb │ ├── fixtures │ │ └── hieradata │ │ │ ├── common.yaml │ │ │ ├── hiera.yaml │ │ │ └── nodes │ │ │ ├── client.yaml │ │ │ └── first.yaml │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ └── ceph_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ └── ceph_config_spec.rb ├── test-requirements.txt └── tox.ini ├── certmonger ├── LICENSE ├── Modulefile ├── README.md ├── manifests │ ├── request_ipa_cert.pp │ └── server.pp └── tests │ ├── nss_ipa.pp │ └── openssl_ipa.pp ├── cinder ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── cinder_volume_with_pacemaker.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── cinder.rb │ │ ├── cinder_api_paste_ini │ │ │ └── ini_setting.rb │ │ ├── cinder_config │ │ │ └── ini_setting.rb │ │ └── cinder_type │ │ │ └── openstack.rb │ │ └── type │ │ ├── cinder_api_paste_ini.rb │ │ ├── cinder_config.rb │ │ └── cinder_type.rb ├── manifests │ ├── api.pp │ ├── backend │ │ ├── bdd.pp │ │ ├── dellsc_iscsi.pp │ │ ├── emc_vnx.pp │ │ ├── eqlx.pp │ │ ├── glusterfs.pp │ │ ├── gpfs.pp │ │ ├── hp3par_iscsi.pp │ │ ├── iscsi.pp │ │ ├── netapp.pp │ │ ├── nexenta.pp │ │ ├── nfs.pp │ │ ├── pure.pp │ │ ├── quobyte.pp │ │ ├── rbd.pp │ │ ├── san.pp │ │ ├── solidfire.pp │ │ └── vmdk.pp │ ├── backends.pp │ ├── backup.pp │ ├── backup │ │ ├── ceph.pp │ │ ├── nfs.pp │ │ └── swift.pp │ ├── ceilometer.pp │ ├── client.pp │ ├── config.pp │ ├── cron │ │ └── db_purge.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── glance.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── params.pp │ ├── policy.pp │ ├── qpid.pp │ ├── quota.pp │ ├── quota_set.pp │ ├── rabbitmq.pp │ ├── scheduler.pp │ ├── scheduler │ │ └── filter.pp │ ├── setup_test_volume.pp │ ├── type.pp │ ├── type_set.pp │ ├── vmware.pp │ ├── volume.pp │ └── volume │ │ ├── dellsc_iscsi.pp │ │ ├── emc_vnx.pp │ │ ├── eqlx.pp │ │ ├── glusterfs.pp │ │ ├── gpfs.pp │ │ ├── hp3par_iscsi.pp │ │ ├── iscsi.pp │ │ ├── netapp.pp │ │ ├── nexenta.pp │ │ ├── nfs.pp │ │ ├── pure.pp │ │ ├── quobyte.pp │ │ ├── rbd.pp │ │ ├── san.pp │ │ ├── solidfire.pp │ │ └── vmdk.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── Test-volume-permissions-7ca9964fdb8491a2.yaml │ │ ├── block_device_backend-877dc1cd0ffab684.yaml │ │ ├── cinder_v3-aacaa1f385aab7c4.yaml │ │ ├── deprecate_auth_params-e34ba5123cee9060.yaml │ │ ├── deprecate_cluster_id-8d9838a9ef8932bf.yaml │ │ ├── deprecate_liberty-192d873c0d039e21.yaml │ │ ├── fix_multiple_rbd-e70b48e788387fa8.yaml │ │ ├── host_config-d58e1bb4c2aff303.yaml │ │ ├── keystone-v3-support-cinder_type-09357cfcf7834e80.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ ├── solidfire_glance-e3bc65c5ff6a634d.yaml │ │ ├── type_providers-4f316d6b119c4d38.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_cinder_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── cinder_api_spec.rb │ │ ├── cinder_backends_spec.rb │ │ ├── cinder_backup_ceph_spec.rb │ │ ├── cinder_backup_nfs_spec.rb │ │ ├── cinder_backup_spec.rb │ │ ├── cinder_backup_swift_spec.rb │ │ ├── cinder_ceilometer_spec.rb │ │ ├── cinder_client_spec.rb │ │ ├── cinder_cron_db_purge_spec.rb │ │ ├── cinder_db_mysql_spec.rb │ │ ├── cinder_db_postgresql_spec.rb │ │ ├── cinder_db_spec.rb │ │ ├── cinder_db_sync_spec.rb │ │ ├── cinder_glance_spec.rb │ │ ├── cinder_keystone_auth_spec.rb │ │ ├── cinder_logging_spec.rb │ │ ├── cinder_params_spec.rb │ │ ├── cinder_policy_spec.rb │ │ ├── cinder_quota_spec.rb │ │ ├── cinder_rabbitmq_spec.rb │ │ ├── cinder_scheduler_filter_spec.rb │ │ ├── cinder_scheduler_spec.rb │ │ ├── cinder_setup_test_volume_spec.rb │ │ ├── cinder_spec.rb │ │ ├── cinder_vmware_spec.rb │ │ ├── cinder_volume_dellsc_iscsi_spec.rb │ │ ├── cinder_volume_emc_vnx_spec.rb │ │ ├── cinder_volume_eqlx_spec.rb │ │ ├── cinder_volume_glusterfs_spec.rb │ │ ├── cinder_volume_gpfs_spec.rb │ │ ├── cinder_volume_hp3par_iscsi_spec.rb │ │ ├── cinder_volume_iscsi_spec.rb │ │ ├── cinder_volume_netapp_spec.rb │ │ ├── cinder_volume_nexenta_spec.rb │ │ ├── cinder_volume_nfs_spec.rb │ │ ├── cinder_volume_pure_spec.rb │ │ ├── cinder_volume_quobyte_spec.rb │ │ ├── cinder_volume_rbd_spec.rb │ │ ├── cinder_volume_san_spec.rb │ │ ├── cinder_volume_solidfire_spec.rb │ │ ├── cinder_volume_spec.rb │ │ └── cinder_volume_vmdk_spec.rb │ ├── defines │ │ ├── cinder_backend_bdd_spec.rb │ │ ├── cinder_backend_dellsc_iscsi_spec.rb │ │ ├── cinder_backend_emc_vnx_spec.rb │ │ ├── cinder_backend_eqlx_spec.rb │ │ ├── cinder_backend_glusterfs_spec.rb │ │ ├── cinder_backend_gpfs_spec.rb │ │ ├── cinder_backend_hp3par_iscsi_spec.rb │ │ ├── cinder_backend_iscsi_spec.rb │ │ ├── cinder_backend_netapp_spec.rb │ │ ├── cinder_backend_nexenta_spec.rb │ │ ├── cinder_backend_nfs_spec.rb │ │ ├── cinder_backend_pure_spec.rb │ │ ├── cinder_backend_quobyte_spec.rb │ │ ├── cinder_backend_rbd_spec.rb │ │ ├── cinder_backend_san_spec.rb │ │ ├── cinder_backend_solidfire_spec.rb │ │ ├── cinder_backend_vmdk_spec.rb │ │ ├── cinder_quota_set_spec.rb │ │ ├── cinder_type_set_spec.rb │ │ └── cinder_type_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── cinder_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── cinder_config │ │ │ └── ini_setting_spec.rb │ │ ├── cinder_spec.rb │ │ └── cinder_type │ │ │ └── openstack_spec.rb │ │ └── type │ │ ├── cinder_api_paste_spec.rb │ │ ├── cinder_config_spec.rb │ │ └── cinder_type_spec.rb ├── test-requirements.txt └── tox.ini ├── concat ├── .fixtures.yml ├── .gitattributes ├── .gitignore ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── files │ └── concatfragments.rb ├── lib │ ├── facter │ │ └── concat_basedir.rb │ └── puppet │ │ └── parser │ │ └── functions │ │ ├── concat_getparam.rb │ │ └── concat_is_bool.rb ├── manifests │ ├── fragment.pp │ ├── init.pp │ └── setup.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── backup_spec.rb │ │ ├── concat_spec.rb │ │ ├── deprecation_warnings_spec.rb │ │ ├── empty_spec.rb │ │ ├── fragment_source_spec.rb │ │ ├── fragments_are_always_replaced_spec.rb │ │ ├── newline_spec.rb │ │ ├── nodesets │ │ │ ├── aix-71-vcloud.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── debian-70rc1-x64.yml │ │ │ ├── debian-73-x64.yml │ │ │ ├── default.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── sles-11-x64.yml │ │ │ ├── sles-11sp1-x64.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── order_spec.rb │ │ ├── quoted_paths_spec.rb │ │ ├── replace_spec.rb │ │ ├── specinfra_stubs.rb │ │ ├── symbolic_name_spec.rb │ │ ├── validation_spec.rb │ │ └── warn_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── classes │ │ └── concat_setup_spec.rb │ │ ├── defines │ │ ├── concat_fragment_spec.rb │ │ └── concat_spec.rb │ │ └── facts │ │ └── concat_basedir_spec.rb └── tests │ ├── fragment.pp │ └── init.pp ├── contrail ├── .fixtures.yml ├── .forgeignore ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── files │ └── vrouter │ │ └── update_dev_net_config_files.py ├── lib │ └── puppet │ │ ├── provider │ │ ├── contrail_alarm_gen_config │ │ │ └── ini_setting.rb │ │ ├── contrail_analytics_api_config │ │ │ └── ini_setting.rb │ │ ├── contrail_analytics_nodemgr_config │ │ │ └── ini_setting.rb │ │ ├── contrail_api_config │ │ │ └── ini_setting.rb │ │ ├── contrail_collector_config │ │ │ └── ini_setting.rb │ │ ├── contrail_config_nodemgr_config │ │ │ └── ini_setting.rb │ │ ├── contrail_control_config │ │ │ └── ini_setting.rb │ │ ├── contrail_control_nodemgr_config │ │ │ └── ini_setting.rb │ │ ├── contrail_database_nodemgr_config │ │ │ └── ini_setting.rb │ │ ├── contrail_device_manager_config │ │ │ └── ini_setting.rb │ │ ├── contrail_discovery_config │ │ │ └── ini_setting.rb │ │ ├── contrail_dns_config │ │ │ └── ini_setting.rb │ │ ├── contrail_keystone_auth_config │ │ │ └── ini_setting.rb │ │ ├── contrail_keystone_config │ │ │ └── ini_setting.rb │ │ ├── contrail_query_engine_config │ │ │ └── ini_setting.rb │ │ ├── contrail_schema_config │ │ │ └── ini_setting.rb │ │ ├── contrail_snmp_collector_config │ │ │ └── ini_setting.rb │ │ ├── contrail_svc_monitor_config │ │ │ └── ini_setting.rb │ │ ├── contrail_topology_config │ │ │ └── ini_setting.rb │ │ ├── contrail_vnc_api_config │ │ │ └── ini_setting.rb │ │ ├── contrail_vrouter_agent_config │ │ │ └── ini_setting.rb │ │ └── contrail_vrouter_nodemgr_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── contrail_alarm_gen_config.rb │ │ ├── contrail_analytics_api_config.rb │ │ ├── contrail_analytics_nodemgr_config.rb │ │ ├── contrail_api_config.rb │ │ ├── contrail_collector_config.rb │ │ ├── contrail_config_nodemgr_config.rb │ │ ├── contrail_control_config.rb │ │ ├── contrail_control_nodemgr_config.rb │ │ ├── contrail_database_nodemgr_config.rb │ │ ├── contrail_device_manager_config.rb │ │ ├── contrail_discovery_config.rb │ │ ├── contrail_dns_config.rb │ │ ├── contrail_keystone_auth_config.rb │ │ ├── contrail_keystone_config.rb │ │ ├── contrail_query_engine_config.rb │ │ ├── contrail_schema_config.rb │ │ ├── contrail_snmp_collector_config.rb │ │ ├── contrail_svc_monitor_config.rb │ │ ├── contrail_topology_config.rb │ │ ├── contrail_vnc_api_config.rb │ │ ├── contrail_vrouter_agent_config.rb │ │ └── contrail_vrouter_nodemgr_config.rb ├── manifests │ ├── analytics.pp │ ├── analytics │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp │ ├── config.pp │ ├── config │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp │ ├── control.pp │ ├── control │ │ ├── config.pp │ │ ├── install.pp │ │ ├── provision_control.pp │ │ ├── provision_encap.pp │ │ ├── provision_linklocal.pp │ │ └── service.pp │ ├── ctrl_details.pp │ ├── database.pp │ ├── database │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp │ ├── init.pp │ ├── keystone.pp │ ├── params.pp │ ├── provision_control.pp │ ├── service_token.pp │ ├── vnc_api.pp │ ├── vrouter.pp │ ├── vrouter │ │ ├── config.pp │ │ ├── install.pp │ │ ├── provision_vrouter.pp │ │ └── service.pp │ ├── webui.pp │ └── webui │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ └── nodesets │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ └── skel_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ └── unit │ │ ├── provider │ │ ├── contrail_alarm_gen_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_analytics_api_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_analytics_nodemgr_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_api_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_collector_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_config_nodemgr_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_control_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_control_nodemgr_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_database_nodemgr_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_device_manager_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_discovery_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_dns_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_keystone_auth_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_keystone_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_query_engine_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_schema_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_snmp_collector_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_svc_monitor_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_topology_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_vnc_api_config │ │ │ └── ini_setting_spec.rb │ │ ├── contrail_vrouter_agent_config │ │ │ └── ini_setting_spec.rb │ │ └── contrail_vrouter_nodemgr_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ ├── contrail_alarm_gen_config_spec.rb │ │ ├── contrail_analytics_api_config_spec.rb │ │ ├── contrail_analytics_nodemgr_config_spec.rb │ │ ├── contrail_api_config_spec.rb │ │ ├── contrail_collector_config_spec.rb │ │ ├── contrail_config_nodemgr_config_spec.rb │ │ ├── contrail_control_config_spec.rb │ │ ├── contrail_control_nodemgr_config_spec.rb │ │ ├── contrail_database_nodemgr_config_spec.rb │ │ ├── contrail_device_manager_config_spec.rb │ │ ├── contrail_discovery_config_spec.rb │ │ ├── contrail_dns_config_spec.rb │ │ ├── contrail_keystone_auth_config_spec.rb │ │ ├── contrail_keystone_config_spec.rb │ │ ├── contrail_query_engine_config_spec.rb │ │ ├── contrail_schema_config_spec.rb │ │ ├── contrail_snmp_collector_config_spec.rb │ │ ├── contrail_svc_monitor_config_spec.rb │ │ ├── contrail_topology_config_spec.rb │ │ ├── contrail_vnc_api_config_spec.rb │ │ ├── contrail_vrouter_agent_config_spec.rb │ │ └── contrail_vrouter_nodemgr_config_spec.rb ├── templates │ ├── config.global.js.erb │ ├── config │ │ ├── basicauthusers.properties.erb │ │ └── log4j.properties.erb │ ├── contrail-named.conf.erb │ ├── ctrl-details.erb │ └── vrouter │ │ └── agent_param.erb └── tests │ └── init.pp ├── corosync ├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ ├── provider │ │ ├── crmsh.rb │ │ ├── cs_clone │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_colocation │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_commit │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_group │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_location │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_order │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_primitive │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_property │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ ├── cs_rsc_defaults │ │ │ └── crm.rb │ │ ├── cs_shadow │ │ │ ├── crm.rb │ │ │ └── pcs.rb │ │ └── pacemaker.rb │ │ └── type │ │ ├── cs_clone.rb │ │ ├── cs_colocation.rb │ │ ├── cs_commit.rb │ │ ├── cs_group.rb │ │ ├── cs_location.rb │ │ ├── cs_order.rb │ │ ├── cs_primitive.rb │ │ ├── cs_property.rb │ │ ├── cs_rsc_defaults.rb │ │ └── cs_shadow.rb ├── manifests │ ├── init.pp │ ├── params.pp │ ├── reprobe.pp │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── basic_spec.rb │ │ ├── cs_colocation_spec.rb │ │ └── nodesets │ │ │ ├── centos-510-x64.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── debian-73-x64.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ └── corosync_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── puppet │ │ ├── provider │ │ ├── corosync_spec.rb │ │ ├── cs_clone_crm_spec.rb │ │ ├── cs_clone_pcs_spec.rb │ │ ├── cs_colocation_crm_spec.rb │ │ ├── cs_primitive_crm_spec.rb │ │ ├── cs_primitive_pcs_spec.rb │ │ ├── cs_property_crm_spec.rb │ │ └── cs_rsc_defaults_crm_spec.rb │ │ └── type │ │ ├── cs_clone_spec.rb │ │ └── cs_primitive_spec.rb ├── templates │ ├── corosync.conf.erb │ ├── corosync.conf.udpu.erb │ └── service.erb └── tests │ ├── init.pp │ └── resources.pp ├── datacat ├── .fixtures.yml ├── .gitignore ├── .nodeset.yml ├── .rspec ├── .travis.yml ├── Changes ├── Gemfile ├── NOTES.md ├── README.md ├── Rakefile ├── TODO.md ├── lib │ ├── puppet │ │ ├── parser │ │ │ └── functions │ │ │ │ └── template_body.rb │ │ ├── provider │ │ │ ├── datacat_collector │ │ │ │ └── datacat_collector.rb │ │ │ └── datacat_fragment │ │ │ │ └── datacat_fragment.rb │ │ └── type │ │ │ ├── datacat_collector.rb │ │ │ └── datacat_fragment.rb │ └── puppet_x │ │ └── richardc │ │ └── datacat.rb ├── manifests │ └── init.pp ├── metadata.json └── spec │ ├── classes │ └── demo1_spec.rb │ ├── defines │ └── datacat_spec.rb │ ├── fixtures │ └── modules │ │ ├── demo1 │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ └── sheeps.erb │ │ ├── demo2 │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ └── merging.erb │ │ ├── demo3 │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ └── hostgroups.cfg.erb │ │ ├── issue1 │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ └── refers_to_scope.erb │ │ └── template_body │ │ └── templates │ │ └── test1.erb │ ├── functions │ └── template_body_spec.rb │ ├── spec_helper.rb │ ├── spec_helper_system.rb │ ├── system │ └── basic_spec.rb │ └── unit │ └── type │ └── datacat_collector_spec.rb ├── elasticsearch ├── .fixtures.yml ├── .gitignore ├── .pmtignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ ├── facter │ │ └── es_facts.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ ├── array_suffix.rb │ │ │ └── plugin_dir.rb │ │ ├── provider │ │ ├── elasticsearch_plugin │ │ │ └── plugin.rb │ │ └── es_instance_conn_validator │ │ │ └── tcp_port.rb │ │ ├── type │ │ ├── elasticsearch_plugin.rb │ │ └── es_instance_conn_validator.rb │ │ └── util │ │ └── es_instance_validator.rb ├── manifests │ ├── config.pp │ ├── init.pp │ ├── instance.pp │ ├── package.pp │ ├── params.pp │ ├── plugin.pp │ ├── python.pp │ ├── repo.pp │ ├── ruby.pp │ ├── script.pp │ ├── service.pp │ ├── service │ │ ├── init.pp │ │ ├── openbsd.pp │ │ ├── openrc.pp │ │ └── systemd.pp │ └── template.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── 001_basic_spec.rb │ │ ├── 002_class_spec.rb │ │ ├── 003_template_spec.rb │ │ ├── 004_plugin_spec.rb │ │ ├── 009_datapath_spec.rb │ │ ├── 010_pkg_url_spec.rb │ │ ├── 011_service_spec.rb │ │ ├── 012_instances_spec.rb │ │ ├── 013_config_spec.rb │ │ ├── 014_hiera_spec.rb │ │ ├── 015_staged_removal.rb │ │ ├── 016_package_pin_spec.rb │ │ ├── 017_restart_on_change_spec.rb │ │ ├── 020_usergroup_spec.rb │ │ ├── 021_es2x_spec.rb │ │ ├── 022_upgrade_spec.rb │ │ ├── integration001.rb │ │ ├── nodesets │ │ │ ├── centos-6-x64.yml │ │ │ ├── centos-7-x64.yml │ │ │ ├── debian-6-x64.yml │ │ │ ├── debian-7-x64.yml │ │ │ ├── debian-8-x64.yml │ │ │ ├── opensuse-121-x64.yml │ │ │ ├── opensuse-131-x64.yml │ │ │ ├── sles-11sp3-x64.yml │ │ │ ├── ubuntu-server-1204-x64.yml │ │ │ ├── ubuntu-server-1210-x64.yml │ │ │ ├── ubuntu-server-1304-x64.yml │ │ │ ├── ubuntu-server-1310-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ └── xplugins001.rb │ ├── classes │ │ ├── 000_elasticsearch_init_spec.rb │ │ ├── 001_hiera_spec.rb │ │ ├── 005_elasticsearch_repo_spec.rb │ │ ├── 010_elasticsearch_init_unkown_spec.rb │ │ └── 099_coverage_spec.rb │ ├── defines │ │ ├── 001_elasticsearch_python_spec.rb │ │ ├── 002_elasticsearch_ruby_spec.rb │ │ ├── 003_elasticsearch_template_spec.rb │ │ ├── 004_elasticsearch_plugin_spec.rb │ │ ├── 005_elasticsearch_instance_spec.rb │ │ ├── 006_elasticsearch_script_spec.rb │ │ ├── 010_elasticsearch_service_init_spec.rb │ │ └── 011_elasticsearch_service_system_spec.rb │ ├── fixtures │ │ ├── facts │ │ │ ├── facts_url1.json │ │ │ └── facts_url2.json │ │ └── hiera │ │ │ ├── hiera.yaml │ │ │ └── hieradata │ │ │ ├── envs │ │ │ └── defaultinstance.yaml │ │ │ ├── multipleinstances.yaml │ │ │ ├── singleinstance.yaml │ │ │ └── singleplugin.yaml │ ├── functions │ │ ├── es_facts_spec.rb │ │ └── plugin_dir_spec.rb │ ├── spec_acceptance_common.rb │ ├── spec_acceptance_integration.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ └── plugin_spec.rb │ │ └── type │ │ └── plugin_spec.rb └── templates │ ├── etc │ ├── elasticsearch │ │ ├── elasticsearch.yml.erb │ │ └── logging.yml.erb │ ├── init.d │ │ ├── elasticsearch.Debian.erb │ │ ├── elasticsearch.OpenBSD.erb │ │ ├── elasticsearch.RedHat.erb │ │ ├── elasticsearch.openrc.erb │ │ └── elasticsearch.systemd.erb │ └── sysconfig │ │ └── defaults.erb │ └── usr │ └── lib │ └── tmpfiles.d │ └── elasticsearch.conf.erb ├── firewall ├── .fixtures.yml ├── .gitignore ├── .nodeset.yml ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── lib │ ├── facter │ │ ├── ip6tables_version.rb │ │ ├── iptables_persistent_version.rb │ │ └── iptables_version.rb │ └── puppet │ │ ├── provider │ │ ├── firewall.rb │ │ ├── firewall │ │ │ ├── ip6tables.rb │ │ │ └── iptables.rb │ │ └── firewallchain │ │ │ └── iptables_chain.rb │ │ ├── type │ │ ├── firewall.rb │ │ └── firewallchain.rb │ │ └── util │ │ ├── firewall.rb │ │ └── ipcidr.rb ├── manifests │ ├── init.pp │ ├── linux.pp │ ├── linux │ │ ├── archlinux.pp │ │ ├── debian.pp │ │ ├── gentoo.pp │ │ └── redhat.pp │ └── params.pp ├── metadata.json └── spec │ ├── acceptance │ ├── change_source_spec.rb │ ├── class_spec.rb │ ├── connlimit_spec.rb │ ├── connmark_spec.rb │ ├── firewall_bridging_spec.rb │ ├── firewall_clusterip_spec.rb │ ├── firewall_dscp_spec.rb │ ├── firewall_iptmodules_spec.rb │ ├── firewall_mss_spec.rb │ ├── firewall_spec.rb │ ├── firewall_tee_spec.rb │ ├── firewall_time_spec.rb │ ├── firewall_uid_spec.rb │ ├── firewallchain_spec.rb │ ├── invert_spec.rb │ ├── ip6_fragment_spec.rb │ ├── isfragment_spec.rb │ ├── match_mark_spec.rb │ ├── nodesets │ │ ├── centos-59-x64-pe.yml │ │ ├── centos-59-x64.yml │ │ ├── centos-64-x64-fusion.yml │ │ ├── centos-64-x64-pe.yml │ │ ├── centos-64-x64.yml │ │ ├── centos-65-x64.yml │ │ ├── centos-7-x64.yml │ │ ├── debian-607-x64.yml │ │ ├── debian-70rc1-x64.yml │ │ ├── default.yml │ │ ├── fedora-18-x64.yml │ │ ├── new │ │ │ ├── aio │ │ │ │ ├── redhat-6-64mda.yml │ │ │ │ ├── redhat-7-64mda.yml │ │ │ │ └── ubuntu-1404-64mda.yml │ │ │ └── pe │ │ │ │ ├── centos-5-64mda.yml │ │ │ │ ├── centos-6-64mda.yml │ │ │ │ ├── centos-7-64mda.yml │ │ │ │ ├── debian-6-64mda.yml │ │ │ │ ├── debian-7-64mda.yml │ │ │ │ ├── oracle-6-64mda.yml │ │ │ │ ├── oracle-7-64mda.yml │ │ │ │ ├── redhat-5-64mda.yml │ │ │ │ ├── redhat-6-64mda.yml │ │ │ │ ├── redhat-7-64mda.yml │ │ │ │ ├── scientific-5-64mda.yml │ │ │ │ ├── scientific-6-64mda.yml │ │ │ │ ├── scientific-7-64mda.yml │ │ │ │ ├── sles-10-64mda.yml │ │ │ │ ├── sles-11-64mda.yml │ │ │ │ ├── sles-12-64mda.yml │ │ │ │ ├── ubuntu-1004-64mda.yml │ │ │ │ ├── ubuntu-1204-64mda.yml │ │ │ │ └── ubuntu-1404-64mda.yml │ │ ├── sles-11sp1-x64.yml │ │ ├── ubuntu-server-10044-x64.yml │ │ ├── ubuntu-server-12042-x64.yml │ │ └── ubuntu-server-1404-x64.yml │ ├── params_spec.rb │ ├── purge_spec.rb │ ├── resource_cmd_spec.rb │ ├── rules_spec.rb │ ├── socket_spec.rb │ ├── standard_usage_spec.rb │ └── unsupported_spec.rb │ ├── fixtures │ ├── ip6tables │ │ └── conversion_hash.rb │ └── iptables │ │ └── conversion_hash.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ ├── classes │ ├── firewall_linux_archlinux_spec.rb │ ├── firewall_linux_debian_spec.rb │ ├── firewall_linux_gentoo_spec.rb │ ├── firewall_linux_redhat_spec.rb │ ├── firewall_linux_spec.rb │ └── firewall_spec.rb │ ├── facter │ ├── iptables_persistent_version_spec.rb │ └── iptables_spec.rb │ └── puppet │ ├── provider │ ├── ip6tables_spec.rb │ ├── iptables_chain_spec.rb │ └── iptables_spec.rb │ ├── type │ ├── firewall_spec.rb │ └── firewallchain_spec.rb │ └── util │ ├── firewall_spec.rb │ └── ipcidr_spec.rb ├── fluentd ├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── init.pp ├── files │ └── td-agent.conf ├── lib │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ └── fluent_config.rb │ │ └── provider │ │ └── package │ │ └── tdagent.rb ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── install_repo.pp │ ├── params.pp │ ├── plugin.pp │ └── service.pp ├── metadata.json └── spec │ ├── acceptance │ ├── class_spec.rb │ └── nodesets │ │ ├── centos-6-x64.yml │ │ ├── centos-7-x64.yml │ │ ├── debian-7-amd64.yml │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ ├── init_spec.rb │ ├── install_spec.rb │ └── service_spec.rb │ ├── defines │ ├── config_spec.rb │ └── plugin_spec.rb │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb ├── git ├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── files │ └── subtree │ │ └── bash_completion.sh ├── lib │ ├── facter │ │ ├── git_exec_path.rb │ │ ├── git_html_path.rb │ │ └── git_version.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ └── git_config_hash.rb │ │ ├── provider │ │ └── git_config │ │ │ └── git_config.rb │ │ └── type │ │ └── git_config.rb ├── manifests │ ├── config.pp │ ├── gitosis.pp │ ├── init.pp │ └── subtree.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── class_spec.rb │ │ ├── git_config_different_users_spec.rb │ │ ├── git_config_provider_spec.rb │ │ └── nodesets │ │ │ ├── centos-64-x64.yml │ │ │ ├── default.yml │ │ │ └── ubuntu-server-12042-x64.yml │ ├── classes │ │ ├── git_gitosis_spec.rb │ │ ├── git_spec.rb │ │ └── git_subtree_spec.rb │ ├── defines │ │ └── git_config_spec.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── facter │ │ ├── git_exec_path_spec.rb │ │ ├── git_html_path_spec.rb │ │ └── git_version_spec.rb │ │ └── puppet │ │ ├── provider │ │ └── git_config │ │ │ └── git_config_spec.rb │ │ └── type │ │ └── git_config │ │ └── git_config_spec.rb └── tests │ ├── gitosis.pp │ └── init.pp ├── glance ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ ├── glance_multi_store.pp │ └── glance_single_store.pp ├── ext │ ├── glance.rb │ └── glance.sh ├── lib │ └── puppet │ │ ├── provider │ │ ├── glance.rb │ │ ├── glance_api_config │ │ │ └── ini_setting.rb │ │ ├── glance_api_paste_ini │ │ │ └── ini_setting.rb │ │ ├── glance_cache_config │ │ │ └── ini_setting.rb │ │ ├── glance_glare_config │ │ │ └── ini_setting.rb │ │ ├── glance_glare_paste_ini │ │ │ └── ini_setting.rb │ │ ├── glance_image │ │ │ └── openstack.rb │ │ ├── glance_registry_config │ │ │ └── ini_setting.rb │ │ ├── glance_registry_paste_ini │ │ │ └── ini_setting.rb │ │ └── glance_swift_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── glance_api_config.rb │ │ ├── glance_api_paste_ini.rb │ │ ├── glance_cache_config.rb │ │ ├── glance_glare_config.rb │ │ ├── glance_glare_paste_ini.rb │ │ ├── glance_image.rb │ │ ├── glance_registry_config.rb │ │ ├── glance_registry_paste_ini.rb │ │ └── glance_swift_config.rb ├── manifests │ ├── api.pp │ ├── api │ │ ├── db.pp │ │ └── logging.pp │ ├── backend │ │ ├── cinder.pp │ │ ├── file.pp │ │ ├── rbd.pp │ │ ├── s3.pp │ │ ├── swift.pp │ │ └── vsphere.pp │ ├── cache │ │ ├── cleaner.pp │ │ ├── logging.pp │ │ └── pruner.pp │ ├── client.pp │ ├── config.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── glare.pp │ ├── glare │ │ ├── db.pp │ │ └── logging.pp │ ├── init.pp │ ├── keystone │ │ ├── auth.pp │ │ └── glare_auth.pp │ ├── notify │ │ ├── qpid.pp │ │ └── rabbitmq.pp │ ├── params.pp │ ├── policy.pp │ ├── registry.pp │ └── registry │ │ ├── db.pp │ │ └── logging.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── deprecate_old_vsphere_backend_parameters-8d798bd64b750911.yaml │ │ ├── glance-image-id-d1a32b5ec443611e.yaml │ │ ├── glance-swift-v3-572d506977688377.yaml │ │ ├── glance_cache_logging-1f53fc9d71d04686.yaml │ │ ├── glance_db_class-dee87f87e25d0040.yaml │ │ ├── glance_glare_service-2cd8231e1e7d097b.yaml │ │ ├── ipv6_registry-95b934a99a6f2639.yaml │ │ ├── keystone_python_depr-80fa804d9cd242c5.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── multi_store-d53d0e440b55e9d6.yaml │ │ ├── new_service_name-307a5803a248d2a3.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── registry_ssl-eed9bdc67c795cde.yaml │ │ ├── remove_cluster_id-da63a8f698b27cec.yaml │ │ ├── remove_old_auth-d9fc4af8e2ced291.yaml │ │ ├── remove_posix-d1f775df21874348.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ ├── update_swift-52dfa8715cddbe91.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_glance_spec.rb │ │ ├── glance_config_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── glance_api_db_spec.rb │ │ ├── glance_api_logging_spec.rb │ │ ├── glance_api_spec.rb │ │ ├── glance_backend_cinder_spec.rb │ │ ├── glance_backend_file_spec.rb │ │ ├── glance_backend_rbd_spec.rb │ │ ├── glance_backend_s3_spec.rb │ │ ├── glance_backend_swift_spec.rb │ │ ├── glance_backend_vsphere_spec.rb │ │ ├── glance_cache_cleaner_spec.rb │ │ ├── glance_cache_logging_spec.rb │ │ ├── glance_cache_pruner_spec.rb │ │ ├── glance_client_spec.rb │ │ ├── glance_config_spec.rb │ │ ├── glance_db_mysql_spec.rb │ │ ├── glance_db_postgresql_spec.rb │ │ ├── glance_db_sync_spec.rb │ │ ├── glance_glare_db_spec.rb │ │ ├── glance_glare_logging_spec.rb │ │ ├── glance_glare_spec.rb │ │ ├── glance_keystone_auth_spec.rb │ │ ├── glance_keystone_glare_auth_spec.rb │ │ ├── glance_notify_rabbitmq_spec.rb │ │ ├── glance_policy_spec.rb │ │ ├── glance_registry_db_spec.rb │ │ ├── glance_registry_logging_spec.rb │ │ ├── glance_registry_spec.rb │ │ └── glance_spec.rb │ ├── shared_examples.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── glance_api_config │ │ │ └── ini_setting_spec.rb │ │ ├── glance_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── glance_cache_config │ │ │ └── ini_setting_spec.rb │ │ ├── glance_glare_config │ │ │ └── ini_setting_spec.rb │ │ ├── glance_glare_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── glance_image_spec.rb │ │ ├── glance_registry_config │ │ │ └── ini_setting_spec.rb │ │ ├── glance_registry_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── glance_spec.rb │ │ └── glance_swift_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ ├── glance_api_config_spec.rb │ │ ├── glance_api_paste_ini_spec.rb │ │ ├── glance_cache_config_spec.rb │ │ ├── glance_glare_config_spec.rb │ │ ├── glance_glare_paste_ini_spec.rb │ │ ├── glance_registry_config_spec.rb │ │ ├── glance_registry_paste_ini_spec.rb │ │ └── glance_swift_config_spec.rb ├── test-requirements.txt ├── tests │ ├── api.pp │ ├── init.pp │ ├── registry.pp │ └── site.pp └── tox.ini ├── gnocchi ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── site.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── gnocchi.rb │ │ ├── gnocchi_api_paste_ini │ │ │ └── ini_setting.rb │ │ └── gnocchi_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── gnocchi_api_paste_ini.rb │ │ └── gnocchi_config.rb ├── manifests │ ├── api.pp │ ├── client.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── metricd.pp │ ├── params.pp │ ├── policy.pp │ ├── statsd.pp │ ├── storage.pp │ ├── storage │ │ ├── ceph.pp │ │ ├── file.pp │ │ ├── influxdb.pp │ │ └── swift.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── api_paste-b94e191896840944.yaml │ │ ├── client-04f70664e363425c.yaml │ │ ├── cradox-e10fb8c46ec2935a.yaml │ │ ├── db_upgrade-2eff712611fa34ba.yaml │ │ ├── influxdb-889413086f27c7e4.yaml │ │ ├── keystone_auth-557bfe055fd9101d.yaml │ │ ├── metricd-dd917b15aa827654.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_gnocchi_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── gnocchi_api_spec.rb │ │ ├── gnocchi_client_spec.rb │ │ ├── gnocchi_config_spec.rb │ │ ├── gnocchi_db_mysql_spec.rb │ │ ├── gnocchi_db_postgresql_spec.rb │ │ ├── gnocchi_db_spec.rb │ │ ├── gnocchi_db_sync_spec.rb │ │ ├── gnocchi_init_spec.rb │ │ ├── gnocchi_keystone_auth_spec.rb │ │ ├── gnocchi_logging_spec.rb │ │ ├── gnocchi_metricd_spec.rb │ │ ├── gnocchi_policy_spec.rb │ │ ├── gnocchi_statsd_spec.rb │ │ ├── gnocchi_storage_ceph_spec.rb │ │ ├── gnocchi_storage_file_spec.rb │ │ ├── gnocchi_storage_influxdb_spec.rb │ │ ├── gnocchi_storage_spec.rb │ │ ├── gnocchi_storage_swift_spec.rb │ │ └── gnocchi_wsgi_apache_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── gnocchi_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── gnocchi_config │ │ │ └── ini_setting_spec.rb │ │ └── gnocchi_spec.rb │ │ └── type │ │ ├── gnocchi_api_paste_ini_spec.rb │ │ └── gnocchi_config_spec.rb ├── test-requirements.txt └── tox.ini ├── haproxy ├── .fixtures.yml ├── .geppetto-rc.json ├── .gitignore ├── .nodeset.yml ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── init.pp ├── lib │ └── facter │ │ └── haproxy_version.rb ├── manifests │ ├── backend.pp │ ├── balancermember.pp │ ├── balancermember │ │ └── collect_exported.pp │ ├── config.pp │ ├── frontend.pp │ ├── init.pp │ ├── install.pp │ ├── instance.pp │ ├── instance_service.pp │ ├── listen.pp │ ├── mapfile.pp │ ├── params.pp │ ├── peer.pp │ ├── peer │ │ └── collect_exported.pp │ ├── peers.pp │ ├── service.pp │ └── userlist.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── basic_spec.rb │ │ ├── frontbackend_spec.rb │ │ ├── listen_spec.rb │ │ ├── nodesets │ │ │ ├── centos-5-vcloud.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-6-vcloud.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── debian-6-vcloud.yml │ │ │ ├── debian-7-vcloud.yml │ │ │ ├── default.yml │ │ │ ├── redhat-7-vcloud.yml │ │ │ ├── ubuntu-1004-x86_64-vcloud.yml │ │ │ ├── ubuntu-1404-x86_64-vcloud.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── unsupported_spec.rb │ │ └── userlist_spec.rb │ ├── classes │ │ └── haproxy_spec.rb │ ├── defines │ │ ├── backend_spec.rb │ │ ├── balancermember_spec.rb │ │ ├── frontend_spec.rb │ │ ├── instance_service_spec.rb │ │ ├── instance_spec.rb │ │ ├── listen_spec.rb │ │ ├── mapfile_spec.rb │ │ ├── peer_spec.rb │ │ ├── peers_spec.rb │ │ └── userlist_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── facter │ │ └── haproxy_version_spec.rb └── templates │ ├── empty.erb │ ├── fragments │ ├── _bind.erb │ ├── _mode.erb │ └── _options.erb │ ├── haproxy-base.cfg.erb │ ├── haproxy_backend_block.erb │ ├── haproxy_balancermember.erb │ ├── haproxy_frontend_block.erb │ ├── haproxy_listen_block.erb │ ├── haproxy_mapfile.erb │ ├── haproxy_peer.erb │ ├── haproxy_peers_block.erb │ ├── haproxy_userlist_block.erb │ └── instance_service_unit_example.erb ├── heat ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── site.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── heat_api_paste_ini │ │ │ └── ini_setting.rb │ │ └── heat_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── heat_api_paste_ini.rb │ │ └── heat_config.rb ├── manifests │ ├── api.pp │ ├── api_cfn.pp │ ├── api_cloudwatch.pp │ ├── client.pp │ ├── config.pp │ ├── cron │ │ └── purge_deleted.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── deps.pp │ ├── engine.pp │ ├── init.pp │ ├── keystone │ │ ├── auth.pp │ │ ├── auth_cfn.pp │ │ └── domain.pp │ ├── logging.pp │ ├── params.pp │ └── policy.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── api_paste-b94e191896840944.yaml │ │ ├── crontab_purge-89f321e9cf966933.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ ├── use-reno-1caaec4ba5aa4285.yaml │ │ └── versionless-auth-urls-08c741084b9a9040.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_heat_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── heat_api_cfn_spec.rb │ │ ├── heat_api_cloudwatch_spec.rb │ │ ├── heat_api_spec.rb │ │ ├── heat_client_spec.rb │ │ ├── heat_config_spec.rb │ │ ├── heat_cron_purge_deleted_spec.rb │ │ ├── heat_db_mysql_spec.rb │ │ ├── heat_db_postgresql_spec.rb │ │ ├── heat_db_spec.rb │ │ ├── heat_db_sync_spec.rb │ │ ├── heat_deps_spec.rb │ │ ├── heat_engine_spec.rb │ │ ├── heat_init_spec.rb │ │ ├── heat_keystone_auth_cfn_spec.rb │ │ ├── heat_keystone_auth_spec.rb │ │ ├── heat_keystone_domain_spec.rb │ │ ├── heat_logging_spec.rb │ │ └── heat_policy_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── heat_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ └── heat_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ ├── heat_api_paste_ini_spec.rb │ │ └── heat_config_spec.rb ├── test-requirements.txt └── tox.ini ├── horizon ├── .gitignore ├── .gitreview ├── .sync.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ └── parser │ │ └── functions │ │ └── os_any2array.rb ├── manifests │ ├── init.pp │ ├── params.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── apache_ports-5d0eb0ca775ad7d1.yaml │ │ ├── keystone_v3-d381e37592d3b29b.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── remove_lesscpy-b4b677de57351078.yaml │ │ ├── root_url-cede3a4a7ecafdf9.yaml │ │ ├── trigger_collectstatic-fb465ebec48b3bc7.yaml │ │ ├── update_local_settings_mitaka-f182327ce660fda0.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── horizon_with_apache_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── horizon_init_spec.rb │ │ └── horizon_wsgi_apache_spec.rb │ ├── fixtures │ │ └── override_local_settings.py.erb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── puppet │ │ └── parser │ │ └── functions │ │ └── os_any2array_spec.rb ├── templates │ └── local_settings.py.erb ├── test-requirements.txt └── tox.ini ├── inifile ├── .fixtures.yml ├── .gitattributes ├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.markdown ├── Rakefile ├── examples │ ├── ini_setting.pp │ └── ini_subsetting.pp ├── lib │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ └── create_ini_settings.rb │ │ ├── provider │ │ ├── ini_setting │ │ │ └── ruby.rb │ │ └── ini_subsetting │ │ │ └── ruby.rb │ │ ├── type │ │ ├── ini_setting.rb │ │ └── ini_subsetting.rb │ │ └── util │ │ ├── external_iterator.rb │ │ ├── ini_file.rb │ │ ├── ini_file │ │ └── section.rb │ │ └── setting_value.rb ├── manifests │ └── init.pp ├── metadata.json └── spec │ ├── acceptance │ ├── ini_setting_spec.rb │ ├── ini_subsetting_spec.rb │ └── nodesets │ │ ├── centos-510-x64.yml │ │ ├── centos-59-x64.yml │ │ ├── centos-64-x64-pe.yml │ │ ├── centos-64-x64.yml │ │ ├── centos-65-x64.yml │ │ ├── debian-607-x64.yml │ │ ├── debian-73-x64.yml │ │ ├── default.yml │ │ ├── fedora-18-x64.yml │ │ ├── sles-11sp1-x64.yml │ │ ├── ubuntu-server-10044-x64.yml │ │ ├── ubuntu-server-12042-x64.yml │ │ ├── ubuntu-server-1404-x64.yml │ │ ├── windows-2003-i386.yml │ │ ├── windows-2003r2-x86_64.yml │ │ ├── windows-2008-x86_64.yml │ │ ├── windows-2008r2-x86_64.yml │ │ ├── windows-2012-x86_64.yml │ │ └── windows-2012r2-x86_64.yml │ ├── classes │ ├── create_ini_settings_test_spec.rb │ ├── inherit_test1_spec.rb │ └── init_spec.rb │ ├── fixtures │ ├── modules │ │ ├── create_ini_settings_test │ │ │ └── manifests │ │ │ │ └── init.pp │ │ ├── inherit_ini_setting │ │ │ └── lib │ │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ └── inherit_ini_setting │ │ │ │ │ └── ini_setting.rb │ │ │ │ └── type │ │ │ │ └── inherit_ini_setting.rb │ │ └── inherit_test1 │ │ │ └── manifests │ │ │ └── init.pp │ └── tmp │ │ └── .empty │ ├── functions │ └── create_ini_settings_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ ├── spec_helper_local.rb │ └── unit │ └── puppet │ ├── provider │ ├── ini_setting │ │ ├── inheritance_spec.rb │ │ └── ruby_spec.rb │ └── ini_subsetting │ │ └── ruby_spec.rb │ ├── type │ ├── ini_setting_spec.rb │ └── ini_subetting_spec.rb │ └── util │ ├── external_iterator_spec.rb │ ├── ini_file_spec.rb │ └── setting_value_spec.rb ├── ironic ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── ironic.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── ironic.rb │ │ ├── ironic_api_paste_ini │ │ │ └── ini_setting.rb │ │ ├── ironic_config │ │ │ └── ini_setting.rb │ │ └── ironic_inspector_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── ironic_api_paste_ini.rb │ │ ├── ironic_config.rb │ │ └── ironic_inspector_config.rb ├── manifests │ ├── api.pp │ ├── bifrost.pp │ ├── client.pp │ ├── conductor.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── inspector_sync.pp │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── drivers │ │ ├── ipmi.pp │ │ └── pxe.pp │ ├── init.pp │ ├── inspector.pp │ ├── inspector │ │ └── logging.pp │ ├── keystone │ │ ├── auth.pp │ │ └── auth_inspector.pp │ ├── logging.pp │ ├── params.pp │ ├── policy.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── api_paste-b94e191896840944.yaml │ │ ├── api_wsgi-e8eb12b8e66ffe4e.yaml │ │ ├── deprecate_cluster_id-8d9838a9ef8932bf.yaml │ │ ├── inspector_mitaka-5984d9af2ba56cb3.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_old_auth-d9fc4af8e2ced291.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── ironic_wsgi_apache_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── inspector_db_sync_spec.rb │ │ ├── ironic_api_spec.rb │ │ ├── ironic_bifrost_spec.rb │ │ ├── ironic_client_spec.rb │ │ ├── ironic_conductor_spec.rb │ │ ├── ironic_config_spec.rb │ │ ├── ironic_db_mysql_spec.rb │ │ ├── ironic_db_postgresql_spec.rb │ │ ├── ironic_db_spec.rb │ │ ├── ironic_db_sync_spec.rb │ │ ├── ironic_drivers_ipmi_spec.rb │ │ ├── ironic_drivers_pxe_spec.rb │ │ ├── ironic_init_spec.rb │ │ ├── ironic_inspector_logging_spec.rb │ │ ├── ironic_inspector_spec.rb │ │ ├── ironic_keystone_auth_inspector_spec.rb │ │ ├── ironic_keystone_auth_spec.rb │ │ ├── ironic_logging_spec.rb │ │ ├── ironic_policy_spec.rb │ │ └── ironic_wsgi_apache_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── ironic_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── ironic_config │ │ │ └── ini_setting_spec.rb │ │ ├── ironic_inspector_config │ │ │ └── ini_setting_spec.rb │ │ └── ironic_spec.rb │ │ └── type │ │ ├── ironic_api_paste_ini_spec.rb │ │ ├── ironic_config_spec.rb │ │ └── ironic_inspector_config_spec.rb ├── templates │ ├── baremetal.json.erb │ ├── bifrost_global_vars.erb │ ├── inspector_dnsmasq_http.erb │ ├── inspector_dnsmasq_tftp.erb │ ├── inspector_ipxe.erb │ └── inspector_pxelinux_cfg.erb ├── test-requirements.txt └── tox.ini ├── java ├── .fixtures.yml ├── .gitignore ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── lib │ └── facter │ │ ├── java_major_version.rb │ │ ├── java_patch_level.rb │ │ └── java_version.rb ├── manifests │ ├── config.pp │ ├── init.pp │ └── params.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── install_spec.rb │ │ └── nodesets │ │ │ ├── centos-5-vcloud.yml │ │ │ ├── centos-59-x64-pe.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-6-vcloud.yml │ │ │ ├── centos-64-x64-fusion.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── centos-7-vcloud.yml │ │ │ ├── debian-6-vcloud.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── debian-7-vcloud.yml │ │ │ ├── debian-70rc1-x64.yml │ │ │ ├── default.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── redhat-7-vcloud.yml │ │ │ ├── sles-11-vcloud.yml │ │ │ ├── sles-11sp1-x64.yml │ │ │ ├── solaris-11-vcloud.yml │ │ │ ├── ubuntu-1004-vcloud.yml │ │ │ ├── ubuntu-1404-vcloud.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ └── ubuntu-server-1504-x64.yml │ ├── classes │ │ └── java_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── facter │ │ ├── java_major_version_spec.rb │ │ ├── java_patch_level_spec.rb │ │ └── java_version_spec.rb └── tests │ ├── alternative.pp │ └── init.pp ├── kafka ├── .fixtures.yml ├── .gitignore ├── .rspec ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── manifests │ ├── broker.pp │ ├── broker │ │ ├── config.pp │ │ ├── install.pp │ │ ├── service.pp │ │ └── topic.pp │ ├── consumer.pp │ ├── consumer │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp │ ├── init.pp │ ├── mirror.pp │ ├── mirror │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp │ ├── params.pp │ ├── producer.pp │ └── producer │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── broker_spec.rb │ │ ├── kafka_spec.rb │ │ └── nodesets │ │ │ ├── centos-511-x64.yml │ │ │ ├── centos-66-x64.yml │ │ │ ├── ubuntu-1204-x64.yml │ │ │ └── ubuntu-1404-x64.yml │ ├── classes │ │ ├── broker_spec.rb │ │ └── coverage_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb └── templates │ ├── consumer.init.erb │ ├── consumer.properties.erb │ ├── init.erb │ ├── mirror.init.erb │ ├── producer.properties.erb │ └── server.properties.erb ├── keepalived ├── .fixtures.yml ├── .gitignore ├── Gemfile ├── LICENSE ├── Modulefile ├── README.md ├── Rakefile ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── instance.pp │ ├── service.pp │ ├── variables.pp │ └── vrrp_script.pp ├── templates │ ├── global_config.erb │ ├── keepalived_instance.erb │ └── keepalived_vrrp_script.erb └── tests │ └── init.pp ├── keystone ├── .gitignore ├── .gitreview ├── .sync.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ ├── apache_dropin.pp │ ├── apache_with_paths.pp │ ├── k2k_sp_shib.pp │ ├── ldap_backend.pp │ ├── ldap_full.pp │ ├── ldap_identity.pp │ ├── user_project_user_role_composite_namevar.pp │ ├── v3_basic.pp │ └── v3_domain_configuration.pp ├── ext │ ├── keystone_test.rb │ └── keystone_test_v3.rb ├── lib │ ├── puppet │ │ ├── provider │ │ │ ├── keystone.rb │ │ │ ├── keystone │ │ │ │ └── util.rb │ │ │ ├── keystone_config │ │ │ │ └── ini_setting.rb │ │ │ ├── keystone_domain │ │ │ │ └── openstack.rb │ │ │ ├── keystone_domain_config │ │ │ │ └── openstack.rb │ │ │ ├── keystone_endpoint │ │ │ │ └── openstack.rb │ │ │ ├── keystone_identity_provider │ │ │ │ └── openstack.rb │ │ │ ├── keystone_paste_ini │ │ │ │ └── ini_setting.rb │ │ │ ├── keystone_role │ │ │ │ └── openstack.rb │ │ │ ├── keystone_service │ │ │ │ └── openstack.rb │ │ │ ├── keystone_tenant │ │ │ │ └── openstack.rb │ │ │ ├── keystone_user │ │ │ │ └── openstack.rb │ │ │ └── keystone_user_role │ │ │ │ └── openstack.rb │ │ └── type │ │ │ ├── keystone_config.rb │ │ │ ├── keystone_domain.rb │ │ │ ├── keystone_domain_config.rb │ │ │ ├── keystone_endpoint.rb │ │ │ ├── keystone_identity_provider.rb │ │ │ ├── keystone_paste_ini.rb │ │ │ ├── keystone_role.rb │ │ │ ├── keystone_service.rb │ │ │ ├── keystone_tenant.rb │ │ │ ├── keystone_user.rb │ │ │ └── keystone_user_role.rb │ └── puppet_x │ │ ├── keystone │ │ ├── composite_namevar.rb │ │ ├── composite_namevar │ │ │ ├── helpers.rb │ │ │ └── helpers │ │ │ │ └── utilities.rb │ │ ├── type.rb │ │ └── type │ │ │ ├── default_domain.rb │ │ │ ├── read_only.rb │ │ │ └── required.rb │ │ └── keystone_config │ │ └── ini_setting.rb ├── manifests │ ├── client.pp │ ├── config.pp │ ├── cron │ │ └── token_flush.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── deps.pp │ ├── disable_admin_token_auth.pp │ ├── endpoint.pp │ ├── federation │ │ ├── identity_provider.pp │ │ ├── mellon.pp │ │ └── shibboleth.pp │ ├── init.pp │ ├── ldap.pp │ ├── ldap_backend.pp │ ├── logging.pp │ ├── params.pp │ ├── policy.pp │ ├── python.pp │ ├── resource │ │ ├── authtoken.pp │ │ └── service_identity.pp │ ├── roles │ │ └── admin.pp │ ├── service.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── deprecated_ldap-02957eb56827ead5.yaml │ │ ├── disable_admin_token_auth-b82d0aca80d1f091.yaml │ │ ├── ensure_parameter_service_identity_resource-610076e4902c23ec.yaml │ │ ├── federation_with_mellon-2f8229c1464b2e0e.yaml │ │ ├── fix-cache-configs-a3972486723f1d99.yaml │ │ ├── fix_admin-fee6e76089c07a42.yaml │ │ ├── fix_endpoint_region-0fa0d89061ebaf12.yaml │ │ ├── fix_endpoint_update_when_missing-4cd73e06a8ac30f7.yaml │ │ ├── fix_openrc_v2-64049769daf57b65.yaml │ │ ├── hash_domains-d6a867466bcf324b.yaml │ │ ├── ipv6_provider-796b60badd356e59.yaml │ │ ├── keystone-wsgi-scripts-0d772d1f9f2d6c57.yaml │ │ ├── keystone_bootstrap-4bf00198001d3350.yaml │ │ ├── keystone_hooks_support-2c9e8b09bdbd1b5b.yaml │ │ ├── keystone_identity_provider-9b6f6b3ad70c60f3.yaml │ │ ├── keystone_python_depr-80fa804d9cd242c5.yaml │ │ ├── manage_ldap_packages-3b739e338f3e59c2.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── multi_domain_configuration-32dc8cbef450f1d6.yaml │ │ ├── multi_ldap-975858a46dd622a6.yaml │ │ ├── os_service_default-9caeeb340d4bb303.yaml │ │ ├── policy_driver-c991dd693d2336fc.yaml │ │ ├── policy_rc_d_keystone_eventlet-2dc65eb3d27f8969.yaml │ │ ├── remove_unused_class-0615d6744896ad97.yaml │ │ ├── stop_posix_and_files-930ee921d0ebead2.yaml │ │ ├── support_multi_domain-bd04f18aa7913eaa.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── keystone_wsgi_apache_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── keystone_client_spec.rb │ │ ├── keystone_cron_token_flush_spec.rb │ │ ├── keystone_db_mysql_spec.rb │ │ ├── keystone_db_postgresql_spec.rb │ │ ├── keystone_db_spec.rb │ │ ├── keystone_db_sync_spec.rb │ │ ├── keystone_deps_spec.rb │ │ ├── keystone_disable_admin_token_auth_spec.rb │ │ ├── keystone_endpoint_spec.rb │ │ ├── keystone_federation_identity_provider_spec.rb │ │ ├── keystone_federation_mellon_spec.rb │ │ ├── keystone_federation_shibboleth.rb │ │ ├── keystone_ldap_spec.rb │ │ ├── keystone_logging_spec.rb │ │ ├── keystone_policy_spec.rb │ │ ├── keystone_roles_admin_spec.rb │ │ ├── keystone_service_spec.rb │ │ ├── keystone_spec.rb │ │ └── keystone_wsgi_apache_spec.rb │ ├── defines │ │ ├── keystone_ldap_backend_spec.rb │ │ ├── keystone_resource_authtoken_spec.rb │ │ └── keystone_resource_service_identity_spec.rb │ ├── shared_examples.rb │ ├── shared_examples_acceptance.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── keystone │ │ │ └── util_spec.rb │ │ ├── keystone_config │ │ │ └── ini_setting_spec.rb │ │ ├── keystone_domain │ │ │ └── openstack_spec.rb │ │ ├── keystone_domain_config │ │ │ └── openstack_spec.rb │ │ ├── keystone_endpoint │ │ │ └── openstack_spec.rb │ │ ├── keystone_identity_provider │ │ │ └── openstack_spec.rb │ │ ├── keystone_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── keystone_role │ │ │ └── openstack_spec.rb │ │ ├── keystone_service │ │ │ └── openstack_spec.rb │ │ ├── keystone_spec.rb │ │ ├── keystone_tenant │ │ │ └── openstack_spec.rb │ │ ├── keystone_user │ │ │ └── openstack_spec.rb │ │ └── keystone_user_role │ │ │ └── openstack_spec.rb │ │ └── type │ │ ├── keystone_config_spec.rb │ │ ├── keystone_domain_config_spec.rb │ │ ├── keystone_endpoint_spec.rb │ │ ├── keystone_identity_provider_spec.rb │ │ ├── keystone_paste_ini_spec.rb │ │ ├── keystone_service_spec.rb │ │ ├── keystone_tenant_spec.rb │ │ ├── keystone_user_role_spec.rb │ │ └── keystone_user_spec.rb ├── templates │ ├── mellon.conf.erb │ └── shibboleth.conf.erb ├── test-requirements.txt ├── tests │ └── site.pp └── tox.ini ├── kibana3 ├── .fixtures.yml ├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── Modulefile ├── README.md ├── Rakefile ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── params.pp │ └── uninstall.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── class_spec.rb │ │ └── nodesets │ │ │ ├── centos-64-x64.yml │ │ │ ├── default.yml │ │ │ └── ubuntu-server-12042-x64.yml │ ├── classes │ │ ├── config_spec.rb │ │ ├── coverage_spec.rb │ │ ├── init_spec.rb │ │ ├── install_spec.rb │ │ ├── params_spec.rb │ │ └── uninstall_spec.rb │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb ├── templates │ └── config.js.erb └── tests │ └── init.pp ├── kmod ├── .fixtures.yml ├── .gitignore ├── .puppet-lint.rc ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── manifests │ ├── alias.pp │ ├── blacklist.pp │ ├── init.pp │ ├── install.pp │ ├── load.pp │ ├── option.pp │ └── setting.pp ├── metadata.json ├── spec │ ├── acceptance │ │ └── nodesets │ │ │ ├── centos-5-x86_64-docker.yml │ │ │ ├── centos-6-x86_64-docker.yml │ │ │ ├── centos-6-x86_64-openstack.yml │ │ │ ├── centos-6-x86_64-vagrant.yml │ │ │ ├── centos-7-x86_64-docker.yml │ │ │ ├── centos-7-x86_64-openstack.yml │ │ │ ├── centos-7-x86_64-vagrant.yml │ │ │ ├── debian-6-x86_64-docker.yml │ │ │ ├── debian-6-x86_64-openstack.yml │ │ │ ├── debian-6-x86_64-vagrant.yml │ │ │ ├── debian-7-x86_64-docker.yml │ │ │ ├── debian-7-x86_64-openstack.yml │ │ │ ├── debian-7-x86_64-vagrant.yml │ │ │ ├── debian-8-x86_64-docker.yml │ │ │ ├── debian-8-x86_64-openstack.yml │ │ │ ├── debian-8-x86_64-vagrant.yml │ │ │ ├── ubuntu-10.04-x86_64-docker.yml │ │ │ ├── ubuntu-12.04-x86_64-docker.yml │ │ │ ├── ubuntu-12.04-x86_64-openstack.yml │ │ │ ├── ubuntu-14.04-x86_64-docker.yml │ │ │ ├── ubuntu-14.04-x86_64-openstack.yml │ │ │ ├── ubuntu-14.04-x86_64-vagrant.yml │ │ │ ├── ubuntu-14.10-x86_64-docker.yml │ │ │ ├── ubuntu-14.10-x86_64-openstack.yml │ │ │ ├── ubuntu-15.04-x86_64-docker.yml │ │ │ └── ubuntu-15.04-x86_64-openstack.yml │ ├── classes │ │ └── kmod_spec.rb │ ├── defines │ │ ├── kmod_alias_spec.rb │ │ ├── kmod_blacklist_spec.rb │ │ ├── kmod_install_spec.rb │ │ ├── kmod_load_spec.rb │ │ └── kmod_setting_spec.rb │ ├── spec.opts │ └── spec_helper.rb └── templates │ └── redhat.modprobe.erb ├── manila ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ ├── provider │ │ ├── manila_api_paste_ini │ │ │ └── ini_setting.rb │ │ └── manila_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── manila_api_paste_ini.rb │ │ └── manila_config.rb ├── manifests │ ├── api.pp │ ├── backend │ │ ├── generic.pp │ │ ├── glusterfs.pp │ │ ├── glusternative.pp │ │ ├── glusternfs.pp │ │ └── netapp.pp │ ├── backends.pp │ ├── client.pp │ ├── compute │ │ └── nova.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── ganesha.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── network │ │ ├── neutron.pp │ │ ├── neutron_single_network.pp │ │ ├── nova_network.pp │ │ ├── nova_single_network.pp │ │ └── standalone.pp │ ├── params.pp │ ├── qpid.pp │ ├── quota.pp │ ├── rabbitmq.pp │ ├── scheduler.pp │ ├── service_instance.pp │ ├── share.pp │ ├── share │ │ ├── generic.pp │ │ ├── glusterfs.pp │ │ └── netapp.pp │ ├── type.pp │ ├── type_set.pp │ └── volume │ │ └── cinder.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_posix-d1f775df21874348.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_manila_spec.rb │ │ ├── manila_config_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── manila_api_spec.rb │ │ ├── manila_backends_spec.rb │ │ ├── manila_client_spec.rb │ │ ├── manila_db_mysql_spec.rb │ │ ├── manila_db_postgresql_spec.rb │ │ ├── manila_db_spec.rb │ │ ├── manila_db_sync_spec.rb │ │ ├── manila_ganesha_spec.rb │ │ ├── manila_keystone_auth_spec.rb │ │ ├── manila_logging_spec.rb │ │ ├── manila_network_neutron_spec.rb │ │ ├── manila_params_spec.rb │ │ ├── manila_quota_spec.rb │ │ ├── manila_rabbitmq_spec.rb │ │ ├── manila_scheduler_spec.rb │ │ ├── manila_share_generic_spec.rb │ │ ├── manila_share_glusterfs_spec.rb │ │ ├── manila_share_netapp_spec.rb │ │ ├── manila_share_spec.rb │ │ └── manila_spec.rb │ ├── defines │ │ ├── manila_backend_generic_spec.rb │ │ ├── manila_backend_glusterfs_spec.rb │ │ ├── manila_backend_glusternative_spec.rb │ │ ├── manila_backend_glusternfs_spec.rb │ │ ├── manila_backend_netapp_spec.rb │ │ ├── manila_network_neutron_single_network_spec.rb │ │ ├── manila_network_nova_network_spec.rb │ │ ├── manila_network_nova_single_network_spec.rb │ │ ├── manila_network_standalone_spec.rb │ │ ├── manila_service_instance_spec.rb │ │ ├── manila_type_set_spec.rb │ │ └── manila_type_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ └── manila_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ └── manila_config_spec.rb ├── test-requirements.txt └── tox.ini ├── memcached ├── .fixtures.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README-DEVELOPER ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ └── parser │ │ └── functions │ │ └── memcached_max_memory.rb ├── manifests │ ├── init.pp │ └── params.pp ├── metadata.json ├── spec │ ├── classes │ │ └── memcached_spec.rb │ ├── spec.opts │ └── spec_helper.rb ├── templates │ ├── memcached.conf.erb │ ├── memcached_sysconfig.erb │ └── memcached_windows.erb └── tests │ └── init.pp ├── midonet ├── .fixtures.yml ├── .gitignore ├── .gitreview ├── CONTRIBUTING.md ├── Gemfile ├── Puppetfile ├── README.md ├── Rakefile ├── data │ ├── common.yaml │ ├── hiera.yaml │ └── osfamily │ │ ├── Debian │ │ ├── 12.04.yaml │ │ ├── 14.04.yaml │ │ └── common.yaml │ │ └── RedHat │ │ ├── 6.yaml │ │ ├── 7.yaml │ │ └── common.yaml ├── files │ └── midonet-api │ │ └── midonet-api.xml ├── lib │ └── puppet │ │ ├── feature │ │ └── faraday.rb │ │ ├── parser │ │ └── functions │ │ │ └── zookeeper_servers.rb │ │ ├── provider │ │ ├── midonet_client_conf │ │ │ └── ini_setting.rb │ │ ├── midonet_gateway │ │ │ └── midonet_api_caller.rb │ │ └── midonet_host_registry │ │ │ └── midonet_api_caller.rb │ │ └── type │ │ ├── midonet_client_conf.rb │ │ ├── midonet_gateway.rb │ │ └── midonet_host_registry.rb ├── manifests │ ├── cassandra.pp │ ├── init.pp │ ├── midonet_agent.pp │ ├── midonet_agent │ │ ├── install.pp │ │ └── run.pp │ ├── midonet_api.pp │ ├── midonet_api │ │ ├── augeas.pp │ │ ├── install.pp │ │ └── run.pp │ ├── midonet_cli.pp │ ├── neutron_plugin.pp │ ├── repository.pp │ ├── repository │ │ ├── centos.pp │ │ └── ubuntu.pp │ └── zookeeper.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── midonet_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── midonet_cassandra_spec.rb │ │ ├── midonet_client_spec.rb │ │ └── midonet_zookeeper_spec.rb │ ├── functions │ │ └── zookeeper_servers_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── puppet │ │ ├── provider │ │ ├── midonet_gateway │ │ │ └── midonet_api_caller_spec.rb │ │ └── midonet_host_registry │ │ │ └── midonet_api_caller_spec.rb │ │ └── type │ │ ├── midonet_gateway_spec.rb │ │ └── midonet_host_registry_spec.rb └── templates │ ├── midonet-agent │ └── midolman.conf.erb │ ├── midonet-api │ ├── keystone_config.xml.erb │ ├── mockauth_config.xml.erb │ └── web.xml.erb │ ├── neutron_plugin │ └── midonet.ini.erb │ └── zookeeper │ ├── zoo.cfg.erb │ └── zookeeper-env.sh.erb ├── mistral ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ ├── provider │ │ └── mistral_config │ │ │ └── ini_setting.rb │ │ └── type │ │ └── mistral_config.rb ├── manifests │ ├── api.pp │ ├── client.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── engine.pp │ ├── executor.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── params.pp │ ├── policy.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── first_release-d4c9a7d326ead137.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_mistral_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── mistral_api_spec.rb │ │ ├── mistral_config_spec.rb │ │ ├── mistral_db_mysql_spec.rb │ │ ├── mistral_db_postgresql_spec.rb │ │ ├── mistral_db_spec.rb │ │ ├── mistral_db_sync_spec.rb │ │ ├── mistral_engine_spec.rb │ │ ├── mistral_executor_spec.rb │ │ ├── mistral_init_spec.rb │ │ ├── mistral_keystone_auth_spec.rb │ │ ├── mistral_logging_spec.rb │ │ ├── mistral_policy_spec.rb │ │ └── mistral_wsgi_apache_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ └── mistral_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ └── mistral_config_spec.rb ├── templates │ ├── openstack-mistral-api.service.erb │ ├── openstack-mistral-engine.service.erb │ └── openstack-mistral-executor.service.erb ├── test-requirements.txt ├── tests │ └── init.pp └── tox.ini ├── module-collectd ├── .fixtures.yml ├── .gitignore ├── .nodeset.yml ├── .rubocop.yml ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── files │ └── tests │ │ └── Foo.pm ├── lib │ ├── facter │ │ └── collectd_real_version.rb │ └── puppet │ │ └── parser │ │ └── functions │ │ └── collectd_convert_processmatch.rb ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── params.pp │ ├── plugin.pp │ ├── plugin │ │ ├── aggregation.pp │ │ ├── aggregation │ │ │ └── aggregator.pp │ │ ├── amqp.pp │ │ ├── apache.pp │ │ ├── bind.pp │ │ ├── ceph.pp │ │ ├── chain.pp │ │ ├── conntrack.pp │ │ ├── contextswitch.pp │ │ ├── cpu.pp │ │ ├── cpufreq.pp │ │ ├── csv.pp │ │ ├── curl.pp │ │ ├── curl │ │ │ └── page.pp │ │ ├── curl_json.pp │ │ ├── dbi.pp │ │ ├── dbi │ │ │ ├── database.pp │ │ │ └── query.pp │ │ ├── df.pp │ │ ├── disk.pp │ │ ├── dns.pp │ │ ├── entropy.pp │ │ ├── exec.pp │ │ ├── exec │ │ │ └── cmd.pp │ │ ├── filecount.pp │ │ ├── filecount │ │ │ └── directory.pp │ │ ├── filter.pp │ │ ├── filter │ │ │ ├── chain.pp │ │ │ ├── match.pp │ │ │ ├── rule.pp │ │ │ └── target.pp │ │ ├── genericjmx.pp │ │ ├── genericjmx │ │ │ ├── connection.pp │ │ │ └── mbean.pp │ │ ├── interface.pp │ │ ├── iptables.pp │ │ ├── irq.pp │ │ ├── java.pp │ │ ├── libvirt.pp │ │ ├── load.pp │ │ ├── logfile.pp │ │ ├── lvm.pp │ │ ├── memcached.pp │ │ ├── memory.pp │ │ ├── mongodb.pp │ │ ├── mysql.pp │ │ ├── mysql │ │ │ └── database.pp │ │ ├── netlink.pp │ │ ├── network.pp │ │ ├── network │ │ │ ├── listener.pp │ │ │ └── server.pp │ │ ├── nfs.pp │ │ ├── nginx.pp │ │ ├── ntpd.pp │ │ ├── openvpn.pp │ │ ├── perl.pp │ │ ├── perl │ │ │ └── plugin.pp │ │ ├── ping.pp │ │ ├── postgresql.pp │ │ ├── postgresql │ │ │ ├── database.pp │ │ │ ├── query.pp │ │ │ └── writer.pp │ │ ├── processes.pp │ │ ├── processes │ │ │ ├── process.pp │ │ │ └── processmatch.pp │ │ ├── protocols.pp │ │ ├── python.pp │ │ ├── python │ │ │ └── module.pp │ │ ├── redis.pp │ │ ├── rrdcached.pp │ │ ├── rrdtool.pp │ │ ├── sensors.pp │ │ ├── snmp.pp │ │ ├── snmp │ │ │ ├── data.pp │ │ │ └── host.pp │ │ ├── statsd.pp │ │ ├── swap.pp │ │ ├── syslog.pp │ │ ├── tail.pp │ │ ├── tail │ │ │ └── file.pp │ │ ├── target_v5upgrade.pp │ │ ├── tcpconns.pp │ │ ├── unixsock.pp │ │ ├── uptime.pp │ │ ├── users.pp │ │ ├── varnish.pp │ │ ├── vmem.pp │ │ ├── write_graphite.pp │ │ ├── write_graphite │ │ │ └── carbon.pp │ │ ├── write_http.pp │ │ ├── write_network.pp │ │ ├── write_riemann.pp │ │ ├── write_sensu.pp │ │ └── zfs_arc.pp │ ├── service.pp │ ├── type.pp │ └── typesdb.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── class_spec.rb │ │ └── nodesets │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── default.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── collectd_init_spec.rb │ │ ├── collectd_plugin_ceph_spec.rb │ │ ├── collectd_plugin_cpu_spec.rb │ │ ├── collectd_plugin_curl_spec.rb │ │ ├── collectd_plugin_dbi_spec.rb │ │ ├── collectd_plugin_disk_spec.rb │ │ ├── collectd_plugin_dns_spec.rb │ │ ├── collectd_plugin_exec_spec.rb │ │ ├── collectd_plugin_filecount_spec.rb │ │ ├── collectd_plugin_filter_spec.rb │ │ ├── collectd_plugin_genericjmx_spec.rb │ │ ├── collectd_plugin_interface_spec.rb │ │ ├── collectd_plugin_iptables_spec.rb │ │ ├── collectd_plugin_irq_spec.rb │ │ ├── collectd_plugin_java_spec.rb │ │ ├── collectd_plugin_libvirt_spec.rb │ │ ├── collectd_plugin_logfile_spec.rb │ │ ├── collectd_plugin_memcached_spec.rb │ │ ├── collectd_plugin_memory_spec.rb │ │ ├── collectd_plugin_mongodb_spec.rb │ │ ├── collectd_plugin_netlink_spec.rb │ │ ├── collectd_plugin_network_spec.rb │ │ ├── collectd_plugin_openvpn_spec.rb │ │ ├── collectd_plugin_ping_spec.rb │ │ ├── collectd_plugin_postgresql_spec.rb │ │ ├── collectd_plugin_processes_spec.rb │ │ ├── collectd_plugin_protocols_spec.rb │ │ ├── collectd_plugin_python_spec.rb │ │ ├── collectd_plugin_redis_spec.rb │ │ ├── collectd_plugin_rrdtool_spec.rb │ │ ├── collectd_plugin_snmp_spec.rb │ │ ├── collectd_plugin_swap_spec.rb │ │ ├── collectd_plugin_tcpconns_spec.rb │ │ ├── collectd_plugin_unixsock_spec.rb │ │ ├── collectd_plugin_varnish_spec.rb │ │ ├── collectd_plugin_write_graphite_spec.rb │ │ ├── collectd_plugin_zfs_arc_spec.rb │ │ └── test_collectd_version_spec.rb │ ├── defines │ │ ├── collectd_plugin_curl_page_spec.rb │ │ ├── collectd_plugin_exec_cmd_spec.rb │ │ ├── collectd_plugin_filecount_directory_spec.rb │ │ ├── collectd_plugin_filter_chain_spec.rb │ │ ├── collectd_plugin_filter_match_spec.rb │ │ ├── collectd_plugin_filter_rule_spec.rb │ │ ├── collectd_plugin_filter_target_spec.rb │ │ ├── collectd_plugin_genericjmx_connection_spec.rb │ │ ├── collectd_plugin_genericjmx_mbean_spec.rb │ │ ├── collectd_plugin_mysql_database_spec.rb │ │ ├── collectd_plugin_network_listener.rb │ │ ├── collectd_plugin_network_listener_spec.rb │ │ ├── collectd_plugin_network_server_spec.rb │ │ ├── collectd_plugin_python_module_spec.rb │ │ ├── collectd_plugin_snmp_data_spec.rb │ │ ├── collectd_plugin_snmp_host_spec.rb │ │ ├── collectd_plugin_spec.rb │ │ ├── collectd_plugin_write_graphite_spec.rb │ │ ├── collectd_type_spec.rb │ │ └── collectd_typesdb_spec.rb │ ├── fixtures │ │ ├── facts │ │ │ ├── collectd_help │ │ │ └── collectd_help_git │ │ ├── modules │ │ │ └── test │ │ │ │ ├── manifests │ │ │ │ └── collectd_version.pp │ │ │ │ └── templates │ │ │ │ └── collectd_version.tmp.erb │ │ └── plugins │ │ │ ├── dns.conf.default │ │ │ ├── dns.conf.ignoresource │ │ │ ├── dns.conf.interface │ │ │ ├── mongodb.conf.collectddir │ │ │ ├── mongodb.conf.configured_dbs_multiple │ │ │ ├── mongodb.conf.configured_dbs_single │ │ │ ├── mongodb.conf.db_pass │ │ │ ├── mongodb.conf.db_user │ │ │ ├── mongodb.conf.default │ │ │ └── mongodb.conf.hostdb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── collectd_real_version_spec.rb ├── templates │ ├── collectd.conf.erb │ ├── curl_json.conf.erb │ ├── loadplugin.conf.erb │ ├── mysql-database.conf.erb │ ├── plugin │ │ ├── aggregation-aggregator.conf.erb │ │ ├── amqp.conf.erb │ │ ├── apache.conf.erb │ │ ├── bind.conf.erb │ │ ├── ceph.conf.erb │ │ ├── chain.conf.erb │ │ ├── cpu.conf.erb │ │ ├── csv.conf.erb │ │ ├── curl-page.conf.erb │ │ ├── dbi │ │ │ ├── database.conf.erb │ │ │ └── query.conf.erb │ │ ├── df.conf.erb │ │ ├── disk.conf.erb │ │ ├── dns.conf.erb │ │ ├── exec │ │ │ └── cmd.conf.erb │ │ ├── filecount-directory.conf.erb │ │ ├── filecount.conf.erb │ │ ├── filter │ │ │ ├── match.erb │ │ │ └── target.erb │ │ ├── genericjmx.conf.header.erb │ │ ├── genericjmx │ │ │ ├── connection.conf.erb │ │ │ └── mbean.conf.erb │ │ ├── interface.conf.erb │ │ ├── iptables.conf.erb │ │ ├── irq.conf.erb │ │ ├── java.conf.erb │ │ ├── libvirt.conf.erb │ │ ├── logfile.conf.erb │ │ ├── match.tpl.erb │ │ ├── memcached.conf.erb │ │ ├── memory.conf.erb │ │ ├── mongodb.conf.erb │ │ ├── netlink.conf.erb │ │ ├── network.conf.erb │ │ ├── network │ │ │ ├── listener.conf.erb │ │ │ └── server.conf.erb │ │ ├── nginx.conf.erb │ │ ├── ntpd.conf.erb │ │ ├── openvpn.conf.erb │ │ ├── perl.conf.erb │ │ ├── perl │ │ │ └── plugin.erb │ │ ├── ping.conf.erb │ │ ├── postgresql │ │ │ ├── database.conf.erb │ │ │ ├── query.conf.erb │ │ │ └── writer.conf.erb │ │ ├── protocols.conf.erb │ │ ├── python │ │ │ ├── header.conf.erb │ │ │ └── module.conf.erb │ │ ├── redis.conf.erb │ │ ├── rrdcached.conf.erb │ │ ├── rrdtool.conf.erb │ │ ├── sensors.conf.erb │ │ ├── snmp.conf.erb │ │ ├── snmp │ │ │ ├── data.conf.erb │ │ │ └── host.conf.erb │ │ ├── statsd.conf.erb │ │ ├── swap.conf.erb │ │ ├── syslog.conf.erb │ │ ├── target_v5upgrade.conf.erb │ │ ├── tcpconns.conf.erb │ │ ├── unixsock.conf.erb │ │ ├── varnish.conf.erb │ │ ├── vmem.conf.erb │ │ ├── write_graphite │ │ │ └── carbon.conf.erb │ │ ├── write_http.conf.erb │ │ ├── write_riemann.conf.erb │ │ └── write_sensu.conf.erb │ └── tail-file.conf.erb └── tests │ ├── init.pp │ ├── plugin.pp │ ├── plugins │ ├── ceph.pp │ ├── df.pp │ ├── disk.pp │ ├── filecount.pp │ ├── graphite.pp │ ├── interface.pp │ ├── iptables.pp │ ├── irq.pp │ ├── logfile.pp │ ├── memcached.pp │ ├── mysql.pp │ ├── netlink.pp │ ├── network.pp │ ├── openvpn.pp │ ├── perl.pp │ ├── processes.pp │ ├── snmp.pp │ ├── syslog.pp │ ├── tail.pp │ ├── tcpconns.pp │ └── unixsock.pp │ ├── purge.pp │ ├── purge_config.pp │ └── typesdb.pp ├── module-data ├── .gitignore ├── Modulefile ├── README.md ├── lib │ ├── hiera │ │ └── backend │ │ │ └── module_data_backend.rb │ └── puppet │ │ └── indirector │ │ └── data_binding │ │ └── hiera.rb └── metadata.json ├── mongodb ├── .fixtures.yml ├── .gitattributes ├── .gitignore ├── .nodeset.yml ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ └── mongodb_password.rb │ │ ├── provider │ │ ├── mongodb.rb │ │ ├── mongodb_conn_validator │ │ │ └── tcp_port.rb │ │ ├── mongodb_database │ │ │ └── mongodb.rb │ │ ├── mongodb_replset │ │ │ └── mongo.rb │ │ ├── mongodb_shard │ │ │ └── mongo.rb │ │ └── mongodb_user │ │ │ └── mongodb.rb │ │ ├── type │ │ ├── mongodb_conn_validator.rb │ │ ├── mongodb_database.rb │ │ ├── mongodb_replset.rb │ │ ├── mongodb_shard.rb │ │ └── mongodb_user.rb │ │ └── util │ │ └── mongodb_validator.rb ├── manifests │ ├── client.pp │ ├── client │ │ └── install.pp │ ├── db.pp │ ├── globals.pp │ ├── init.pp │ ├── mongos.pp │ ├── mongos │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp │ ├── params.pp │ ├── replset.pp │ ├── repo.pp │ ├── repo │ │ ├── apt.pp │ │ └── yum.pp │ ├── server.pp │ ├── server │ │ ├── config.pp │ │ ├── install.pp │ │ └── service.pp │ └── shardsvr.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── database_spec.rb │ │ ├── mongos_spec.rb │ │ ├── nodesets │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-6-vcloud.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── centos-7-vcloud.yml │ │ │ ├── centos-7-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── debian-70rc1-x64.yml │ │ │ ├── default.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── multi-centos-6-vcloud.yml │ │ │ ├── multi-centos-64-x64.yml │ │ │ ├── multi-centos-7-vcloud.yml │ │ │ ├── multi-centos-7-x64.yml │ │ │ ├── sles-11-x64.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── replset_spec.rb │ │ ├── server_spec.rb │ │ ├── sharding_spec.rb │ │ └── user_spec.rb │ ├── classes │ │ ├── client_install_spec.rb │ │ ├── mongos_config_spec.rb │ │ ├── mongos_install_spec.rb │ │ ├── mongos_service_spec.rb │ │ ├── mongos_spec.rb │ │ ├── repo_spec.rb │ │ ├── server_config_spec.rb │ │ ├── server_install_spec.rb │ │ └── server_spec.rb │ ├── defines │ │ └── db_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ ├── spec_helper_local.rb │ ├── spec_helper_system.rb │ ├── system │ │ ├── basic_spec.rb │ │ ├── server_10gen_spec.rb │ │ └── server_distro_spec.rb │ └── unit │ │ ├── mongodb_password_spec.rb │ │ └── puppet │ │ ├── provider │ │ ├── mongodb_database │ │ │ └── mongodb_spec.rb │ │ ├── mongodb_replset │ │ │ └── mongodb_spec.rb │ │ ├── mongodb_shard │ │ │ └── mongodb_spec.rb │ │ └── mongodb_user │ │ │ └── mongodb_spec.rb │ │ └── type │ │ ├── mongodb_database_spec.rb │ │ ├── mongodb_replset_spec.rb │ │ ├── mongodb_shard_spec.rb │ │ └── mongodb_user_spec.rb ├── templates │ ├── mongodb-shard.conf.erb │ ├── mongodb.conf.2.6.erb │ ├── mongodb.conf.erb │ ├── mongorc.js.erb │ └── mongos │ │ ├── Debian │ │ └── mongos.erb │ │ └── RedHat │ │ └── mongos.erb └── tests │ ├── client.pp │ ├── globals.pp │ ├── init.pp │ ├── replicaset.pp │ ├── server.pp │ └── sharding.pp ├── mysql ├── .fixtures.yml ├── .geppetto-rc.json ├── .gitattributes ├── .gitignore ├── .nodeset.yml ├── .rspec ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.md ├── Rakefile ├── TODO ├── examples │ ├── backup.pp │ ├── bindings.pp │ ├── java.pp │ ├── mysql_database.pp │ ├── mysql_db.pp │ ├── mysql_grant.pp │ ├── mysql_plugin.pp │ ├── mysql_user.pp │ ├── perl.pp │ ├── python.pp │ ├── ruby.pp │ ├── server.pp │ └── server │ │ ├── account_security.pp │ │ └── config.pp ├── lib │ ├── facter │ │ ├── mysql_server_id.rb │ │ └── mysql_version.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ ├── mysql_deepmerge.rb │ │ │ ├── mysql_dirname.rb │ │ │ ├── mysql_password.rb │ │ │ ├── mysql_strip_hash.rb │ │ │ └── mysql_table_exists.rb │ │ ├── provider │ │ ├── mysql.rb │ │ ├── mysql_database │ │ │ └── mysql.rb │ │ ├── mysql_datadir │ │ │ └── mysql.rb │ │ ├── mysql_grant │ │ │ └── mysql.rb │ │ ├── mysql_plugin │ │ │ └── mysql.rb │ │ └── mysql_user │ │ │ └── mysql.rb │ │ └── type │ │ ├── mysql_database.rb │ │ ├── mysql_datadir.rb │ │ ├── mysql_grant.rb │ │ ├── mysql_plugin.rb │ │ └── mysql_user.rb ├── manifests │ ├── backup │ │ ├── mysqlbackup.pp │ │ ├── mysqldump.pp │ │ └── xtrabackup.pp │ ├── bindings.pp │ ├── bindings │ │ ├── client_dev.pp │ │ ├── daemon_dev.pp │ │ ├── java.pp │ │ ├── perl.pp │ │ ├── php.pp │ │ ├── python.pp │ │ └── ruby.pp │ ├── client.pp │ ├── client │ │ └── install.pp │ ├── db.pp │ ├── params.pp │ ├── server.pp │ └── server │ │ ├── account_security.pp │ │ ├── backup.pp │ │ ├── config.pp │ │ ├── install.pp │ │ ├── installdb.pp │ │ ├── monitor.pp │ │ ├── mysqltuner.pp │ │ ├── providers.pp │ │ ├── root_password.pp │ │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── mysql_backup_spec.rb │ │ ├── mysql_db_spec.rb │ │ ├── mysql_server_spec.rb │ │ ├── nodesets │ │ │ ├── centos-510-x64.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── default.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── sles-11-x64.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ └── types │ │ │ ├── mysql_database_spec.rb │ │ │ ├── mysql_grant_spec.rb │ │ │ ├── mysql_plugin_spec.rb │ │ │ └── mysql_user_spec.rb │ ├── classes │ │ ├── graceful_failures_spec.rb │ │ ├── mycnf_template_spec.rb │ │ ├── mysql_bindings_spec.rb │ │ ├── mysql_client_spec.rb │ │ ├── mysql_server_account_security_spec.rb │ │ ├── mysql_server_backup_spec.rb │ │ ├── mysql_server_monitor_spec.rb │ │ ├── mysql_server_mysqltuner_spec.rb │ │ └── mysql_server_spec.rb │ ├── defines │ │ └── mysql_db_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ ├── spec_helper_local.rb │ └── unit │ │ ├── facter │ │ ├── mysql_server_id_spec.rb │ │ └── mysql_version_spec.rb │ │ └── puppet │ │ ├── functions │ │ ├── mysql_deepmerge_spec.rb │ │ ├── mysql_password_spec.rb │ │ └── mysql_table_exists_spec.rb │ │ ├── provider │ │ ├── mysql_database │ │ │ └── mysql_spec.rb │ │ ├── mysql_plugin │ │ │ └── mysql_spec.rb │ │ └── mysql_user │ │ │ └── mysql_spec.rb │ │ └── type │ │ ├── mysql_database_spec.rb │ │ ├── mysql_grant_spec.rb │ │ ├── mysql_plugin_spec.rb │ │ └── mysql_user_spec.rb └── templates │ ├── meb.cnf.erb │ ├── my.cnf.erb │ ├── my.cnf.pass.erb │ ├── mysqlbackup.sh.erb │ └── xtrabackup.sh.erb ├── n1k_vsm ├── .fixtures.yml ├── .gitignore ├── .gitreview ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── files │ ├── n1kv │ └── repackiso.py ├── manifests │ ├── deploy.pp │ ├── init.pp │ ├── pkgprep_ovscfg.pp │ └── vsmprep.pp ├── metadata.json ├── spec │ ├── acceptance │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── n1kv_vsm_deploy_spec.rb │ │ ├── n1kv_vsm_pkgprep_ovscfg_spec.rb │ │ ├── n1kv_vsm_spec.rb │ │ └── n1kv_vsm_vsmprep_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb └── templates │ ├── vsm_vm.xml.erb │ └── vsm_vm_secondary.xml.erb ├── nagios ├── LICENSE ├── README.md ├── data │ ├── RedHat.yaml │ └── hiera.yaml ├── lib │ ├── facter │ │ └── openstack_services_enabled.rb │ └── puppet │ │ └── parser │ │ └── functions │ │ ├── hostgroup_used.rb │ │ ├── hostgroups_by_services.rb │ │ ├── nagios_host_add.rb │ │ ├── nagios_hosts_get.rb │ │ └── nagios_services_active.rb ├── manifests │ ├── client.pp │ ├── params.pp │ ├── server.pp │ └── server │ │ ├── base.pp │ │ ├── config.pp │ │ ├── nrpe.pp │ │ └── openstack.pp └── templates │ ├── ceilometer-list.erb │ ├── cinder-list.erb │ ├── glance-list.erb │ ├── heat-list.erb │ ├── keystone-user-list.erb │ ├── keystonerc_admin.erb │ ├── neutron-net-list.erb │ ├── neutron-network-check │ ├── nova-list.erb │ ├── swift-list.erb │ └── virsh_nodeinfo.erb ├── neutron ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ ├── base_provision.pp │ ├── cisco_ml2.pp │ ├── create_network.sh │ ├── neutron.pp │ └── neutron_with_pacemaker.pp ├── lib │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ ├── validate_network_vlan_ranges.rb │ │ │ ├── validate_tunnel_id_ranges.rb │ │ │ ├── validate_vni_ranges.rb │ │ │ └── validate_vxlan_udp_port.rb │ │ ├── provider │ │ ├── neutron.rb │ │ ├── neutron_agent_linuxbridge │ │ │ └── ini_setting.rb │ │ ├── neutron_agent_ovs │ │ │ └── ini_setting.rb │ │ ├── neutron_api_config │ │ │ └── ini_setting.rb │ │ ├── neutron_api_paste_ini │ │ │ └── ini_setting.rb │ │ ├── neutron_config │ │ │ └── openstackconfig.rb │ │ ├── neutron_dhcp_agent_config │ │ │ └── ini_setting.rb │ │ ├── neutron_fwaas_service_config │ │ │ └── ini_setting.rb │ │ ├── neutron_l3_agent_config │ │ │ └── ini_setting.rb │ │ ├── neutron_l3_ovs_bridge │ │ │ └── neutron.rb │ │ ├── neutron_lbaas_agent_config │ │ │ └── ini_setting.rb │ │ ├── neutron_lbaas_service_config │ │ │ └── openstackconfig.rb │ │ ├── neutron_metadata_agent_config │ │ │ └── ini_setting.rb │ │ ├── neutron_metering_agent_config │ │ │ └── ini_setting.rb │ │ ├── neutron_network │ │ │ └── neutron.rb │ │ ├── neutron_plugin_cisco │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_cisco_credentials │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_cisco_db_conn │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_cisco_l2network │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_linuxbridge │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_midonet │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_ml2 │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_nuage │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_nvp │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_opencontrail │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_plumgrid │ │ │ └── ini_setting.rb │ │ ├── neutron_plugin_sriov │ │ │ └── ini_setting.rb │ │ ├── neutron_plumlib_plumgrid │ │ │ └── ini_setting.rb │ │ ├── neutron_port │ │ │ └── neutron.rb │ │ ├── neutron_router │ │ │ └── neutron.rb │ │ ├── neutron_router_interface │ │ │ └── neutron.rb │ │ ├── neutron_sriov_agent_config │ │ │ └── ini_setting.rb │ │ ├── neutron_subnet │ │ │ └── neutron.rb │ │ ├── neutron_vpnaas_agent_config │ │ │ └── ini_setting.rb │ │ └── neutron_vpnaas_service_config │ │ │ └── openstackconfig.rb │ │ └── type │ │ ├── neutron_agent_linuxbridge.rb │ │ ├── neutron_agent_ovs.rb │ │ ├── neutron_api_config.rb │ │ ├── neutron_api_paste_ini.rb │ │ ├── neutron_config.rb │ │ ├── neutron_dhcp_agent_config.rb │ │ ├── neutron_fwaas_service_config.rb │ │ ├── neutron_l3_agent_config.rb │ │ ├── neutron_l3_ovs_bridge.rb │ │ ├── neutron_lbaas_agent_config.rb │ │ ├── neutron_lbaas_service_config.rb │ │ ├── neutron_metadata_agent_config.rb │ │ ├── neutron_metering_agent_config.rb │ │ ├── neutron_network.rb │ │ ├── neutron_plugin_cisco.rb │ │ ├── neutron_plugin_cisco_credentials.rb │ │ ├── neutron_plugin_cisco_db_conn.rb │ │ ├── neutron_plugin_cisco_l2network.rb │ │ ├── neutron_plugin_linuxbridge.rb │ │ ├── neutron_plugin_midonet.rb │ │ ├── neutron_plugin_ml2.rb │ │ ├── neutron_plugin_nuage.rb │ │ ├── neutron_plugin_nvp.rb │ │ ├── neutron_plugin_opencontrail.rb │ │ ├── neutron_plugin_plumgrid.rb │ │ ├── neutron_plugin_sriov.rb │ │ ├── neutron_plumlib_plumgrid.rb │ │ ├── neutron_port.rb │ │ ├── neutron_router.rb │ │ ├── neutron_router_interface.rb │ │ ├── neutron_sriov_agent_config.rb │ │ ├── neutron_subnet.rb │ │ ├── neutron_vpnaas_agent_config.rb │ │ └── neutron_vpnaas_service_config.rb ├── manifests │ ├── agents │ │ ├── bigswitch.pp │ │ ├── dhcp.pp │ │ ├── l3.pp │ │ ├── lbaas.pp │ │ ├── metadata.pp │ │ ├── metering.pp │ │ ├── ml2 │ │ │ ├── linuxbridge.pp │ │ │ ├── ovs.pp │ │ │ └── sriov.pp │ │ ├── n1kv_vem.pp │ │ └── vpnaas.pp │ ├── client.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── params.pp │ ├── plugins │ │ ├── cisco.pp │ │ ├── midonet.pp │ │ ├── ml2.pp │ │ ├── ml2 │ │ │ ├── arista.pp │ │ │ ├── arista │ │ │ │ └── l3.pp │ │ │ ├── bigswitch.pp │ │ │ ├── bigswitch │ │ │ │ └── restproxy.pp │ │ │ ├── cisco.pp │ │ │ ├── cisco │ │ │ │ ├── nexus.pp │ │ │ │ ├── nexus1000v.pp │ │ │ │ ├── nexus_creds.pp │ │ │ │ ├── nexus_switch.pp │ │ │ │ ├── nexus_switch_server.pp │ │ │ │ ├── type_nexus_vxlan.pp │ │ │ │ └── ucsm.pp │ │ │ ├── mech_driver.pp │ │ │ ├── midonet.pp │ │ │ ├── opendaylight.pp │ │ │ └── type_driver.pp │ │ ├── nuage.pp │ │ ├── nvp.pp │ │ ├── opencontrail.pp │ │ ├── ovs │ │ │ ├── bridge.pp │ │ │ ├── opendaylight.pp │ │ │ └── port.pp │ │ └── plumgrid.pp │ ├── policy.pp │ ├── quota.pp │ ├── server.pp │ ├── server │ │ └── notifications.pp │ └── services │ │ ├── fwaas.pp │ │ ├── lbaas.pp │ │ ├── lbaas │ │ ├── haproxy.pp │ │ └── octavia.pp │ │ └── vpnaas.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── add-port-binding-support-3b8c56b65309db2e.yaml │ │ ├── add_dnsmasq_dns_servers-2dd26f5c9383f836.yaml │ │ ├── add_geneve_type_driver_configs-e285075b3238b49d.yaml │ │ ├── add_lbaas_driver_package_to_lbaas_services_class-8d0f51e7be9b5f42.yaml │ │ ├── added_arista_ml2_plugin-8bfd0c41981dac50.yaml │ │ ├── api_paste-b94e191896840944.yaml │ │ ├── consolidate_service_provider_configuration-3ce48947a396ad25.yaml │ │ ├── deprecate_network_device_mtu-d7f15c98605ac2fb.yaml │ │ ├── fix-neutron-port-creation-50818b9dc7a9cc05.yaml │ │ ├── fix_lb_driver-d429a30889ef8f22.yaml │ │ ├── lbaas_certificates_configuration-470f7299e1ea136f.yaml │ │ ├── lbaasv2_agent_and_service-ca5e38a07566ad1e.yaml │ │ ├── missing_firewall_driver_ml2-24b48831f2d0e62b.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mitaka_aas-e5243eaac2354e85.yaml │ │ ├── mitaka_drivers-8c41f528f346a388.yaml │ │ ├── mitaka_metadata-77ebc004c9064934.yaml │ │ ├── mitaka_providers-040ac57a732b1e82.yaml │ │ ├── neutron_availability_zones-80246c2af9a7be08.yaml │ │ ├── new_auth-2331a620217ccf7c.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── qos-13c0b72fe9a5b502.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ ├── update-midonet-plugin-to-v5-8841e1557b1a504e.yaml │ │ ├── update_midonet_package_name-86a68308aa067cb8.yaml │ │ ├── update_plumgrid_config-82f3f631917f0e50.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_neutron_spec.rb │ │ ├── neutron_config_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── neutron_agents_bigswitch.rb │ │ ├── neutron_agents_dhcp_spec.rb │ │ ├── neutron_agents_l3_spec.rb │ │ ├── neutron_agents_lbaas_spec.rb │ │ ├── neutron_agents_metadata_spec.rb │ │ ├── neutron_agents_metering_spec.rb │ │ ├── neutron_agents_ml2_linuxbridge_spec.rb │ │ ├── neutron_agents_ml2_ovs_spec.rb │ │ ├── neutron_agents_ml2_sriov_spec.rb │ │ ├── neutron_agents_n1kv_vem_spec.rb │ │ ├── neutron_agents_vpnaas_spec.rb │ │ ├── neutron_client_spec.rb │ │ ├── neutron_db_mysql_spec.rb │ │ ├── neutron_db_postgresql_spec.rb │ │ ├── neutron_db_spec.rb │ │ ├── neutron_db_sync_spec.rb │ │ ├── neutron_init_spec.rb │ │ ├── neutron_keystone_auth_spec.rb │ │ ├── neutron_plugins_cisco_spec.rb │ │ ├── neutron_plugins_midonet_spec.rb │ │ ├── neutron_plugins_ml2_arista_l3_spec.rb │ │ ├── neutron_plugins_ml2_arista_spec.rb │ │ ├── neutron_plugins_ml2_bigswitch_restproxy_spec.rb │ │ ├── neutron_plugins_ml2_bigswitch_spec.rb │ │ ├── neutron_plugins_ml2_cisco_nexus1000v_spec.rb │ │ ├── neutron_plugins_ml2_cisco_nexus_spec.rb │ │ ├── neutron_plugins_ml2_cisco_spec.rb │ │ ├── neutron_plugins_ml2_cisco_type_nexus_vxlan_spec.rb │ │ ├── neutron_plugins_ml2_cisco_ucsm_spec.rb │ │ ├── neutron_plugins_ml2_midonet_spec.rb │ │ ├── neutron_plugins_ml2_opendaylight_spec.rb │ │ ├── neutron_plugins_ml2_spec.rb │ │ ├── neutron_plugins_nuage_spec.rb │ │ ├── neutron_plugins_nvp_spec.rb │ │ ├── neutron_plugins_opencontrail_spec.rb │ │ ├── neutron_plugins_ovs_opendaylight_spec.rb │ │ ├── neutron_plugins_plumgrid_spec.rb │ │ ├── neutron_policy_spec.rb │ │ ├── neutron_quota_spec.rb │ │ ├── neutron_server_notifications_spec.rb │ │ ├── neutron_server_spec.rb │ │ ├── neutron_services_fwaas_spec.rb │ │ ├── neutron_services_lbaas_haproxy_spec.rb │ │ ├── neutron_services_lbaas_octavia_spec.rb │ │ ├── neutron_services_lbaas_spec.rb │ │ └── neutron_services_vpnaas_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── neutron_agent_linuxbridge │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_agent_ovs │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_api_config │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_dhcp_agent_config │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_fwaas_service_config │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_l3_agent_config │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_l3_ovs_bridge │ │ │ └── neutron_spec.rb │ │ ├── neutron_lbaas_agent_config │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_metadata_agent_config │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_metering_agent_config │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_network │ │ │ └── neutron_spec.rb │ │ ├── neutron_plugin_cisco │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_cisco_credentials │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_cisco_db_conn │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_cisco_l2network │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_midonet │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_ml2 │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_nuage │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_nvp │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_opencontrail │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plugin_plumgrid │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_plumlib_plumgrid │ │ │ └── ini_setting_spec.rb │ │ ├── neutron_port │ │ │ └── neutron_spec.rb │ │ ├── neutron_router │ │ │ └── neutron_spec.rb │ │ ├── neutron_router_interface │ │ │ ├── neutron_spec.rb │ │ │ └── new_neutron_spec.rb │ │ ├── neutron_spec.rb │ │ ├── neutron_subnet │ │ │ └── neutron_spec.rb │ │ └── neutron_vpnaas_agent_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ ├── neutron_agent_linuxbridge_spec.rb │ │ ├── neutron_agent_ovs_spec.rb │ │ ├── neutron_api_paste_ini_spec.rb │ │ ├── neutron_config_spec.rb │ │ ├── neutron_dhcp_agent_config_spec.rb │ │ ├── neutron_fwaas_service_config_spec.rb │ │ ├── neutron_l3_agent_config_spec.rb │ │ ├── neutron_lbaas_agent_config_spec.rb │ │ ├── neutron_metadata_agent_config_spec.rb │ │ ├── neutron_metering_agent_config_spec.rb │ │ ├── neutron_plugin_cisco_credentials_spec.rb │ │ ├── neutron_plugin_cisco_db_conn_spec.rb │ │ ├── neutron_plugin_cisco_l2network_spec.rb │ │ ├── neutron_plugin_cisco_spec.rb │ │ ├── neutron_plugin_midonet_spec.rb │ │ ├── neutron_plugin_ml2_spec.rb │ │ ├── neutron_plugin_nvp_spec.rb │ │ ├── neutron_plugin_opencontrail_spec.rb │ │ ├── neutron_plugin_plumgrid_spec.rb │ │ ├── neutron_plumlib_plumgrid_spec.rb │ │ ├── neutron_subnet.rb │ │ └── neutron_vpnaas_agent_config_spec.rb ├── templates │ └── n1kv.conf.erb ├── test-requirements.txt └── tox.ini ├── nova ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ ├── nova_with_pacemaker.pp │ └── nova_wsgi.pp ├── lib │ ├── facter │ │ └── libvirt_uuid.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ └── check_array_of_hash.rb │ │ ├── provider │ │ ├── nova.rb │ │ ├── nova_aggregate │ │ │ └── nova.rb │ │ ├── nova_cells │ │ │ └── nova_manage.rb │ │ ├── nova_config │ │ │ └── ini_setting.rb │ │ ├── nova_floating │ │ │ └── nova_manage.rb │ │ ├── nova_network │ │ │ └── nova.rb │ │ ├── nova_paste_api_ini │ │ │ └── ini_setting.rb │ │ ├── nova_security_group │ │ │ └── nova.rb │ │ └── nova_security_rule │ │ │ └── nova.rb │ │ └── type │ │ ├── nova_aggregate.rb │ │ ├── nova_cells.rb │ │ ├── nova_config.rb │ │ ├── nova_floating.rb │ │ ├── nova_network.rb │ │ ├── nova_paste_api_ini.rb │ │ ├── nova_security_group.rb │ │ └── nova_security_rule.rb ├── manifests │ ├── api.pp │ ├── availability_zone.pp │ ├── cache.pp │ ├── cells.pp │ ├── cert.pp │ ├── client.pp │ ├── compute.pp │ ├── compute │ │ ├── ironic.pp │ │ ├── libvirt.pp │ │ ├── neutron.pp │ │ ├── rbd.pp │ │ ├── serial.pp │ │ ├── spice.pp │ │ ├── vmware.pp │ │ └── xenserver.pp │ ├── conductor.pp │ ├── config.pp │ ├── consoleauth.pp │ ├── cron │ │ └── archive_deleted_rows.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── mysql_api.pp │ │ ├── postgresql.pp │ │ ├── postgresql_api.pp │ │ ├── sync.pp │ │ └── sync_api.pp │ ├── deps.pp │ ├── generic_service.pp │ ├── init.pp │ ├── ironic │ │ └── common.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── manage │ │ ├── cells.pp │ │ ├── floating.pp │ │ └── network.pp │ ├── migration │ │ └── libvirt.pp │ ├── network.pp │ ├── network │ │ ├── bridge.pp │ │ ├── flat.pp │ │ ├── flatdhcp.pp │ │ ├── neutron.pp │ │ └── vlan.pp │ ├── objectstore.pp │ ├── params.pp │ ├── policy.pp │ ├── qpid.pp │ ├── quota.pp │ ├── rabbitmq.pp │ ├── scheduler.pp │ ├── scheduler │ │ └── filter.pp │ ├── serialproxy.pp │ ├── spicehtml5proxy.pp │ ├── utilities.pp │ ├── vncproxy.pp │ ├── vncproxy │ │ └── common.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── add-cache-config-parameters-7a682dcae22d0f2b.yaml │ │ ├── add_nova_api_db-62e459588e14a92e.yaml │ │ ├── cpu_mode-for-virt_type=qemu-is-now-none-da2f1ada88d6d2c0.yaml │ │ ├── deprecate_network_api_class-557e9ac007c97feb.yaml │ │ ├── fix_vncserver_listen-e48f7c8b9cda25e4.yaml │ │ ├── keystone_v3_neutron-62f3f801039ddcc8.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mitaka_drepecations-704e9befd68c3c6d.yaml │ │ ├── mitaka_features-ddeb388524fa6590.yaml │ │ ├── nova_network_provider-10b28e14d9db08f0.yaml │ │ ├── nova_wsgi-a9ee8c336a67a7ac.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ ├── security_group_provider-50c27926baa9e015.yaml │ │ ├── use-reno-1caaec4ba5aa4285.yaml │ │ └── vmware_updates-9ead09cc33383d5f.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ └── nova_wsgi_apache_spec.rb │ ├── classes │ │ ├── nova_api_spec.rb │ │ ├── nova_availability_zone_spec.rb │ │ ├── nova_cache_spec.rb │ │ ├── nova_cells_spec.rb │ │ ├── nova_cert_spec.rb │ │ ├── nova_client_spec.rb │ │ ├── nova_compute_ironic_spec.rb │ │ ├── nova_compute_libvirt_spec.rb │ │ ├── nova_compute_neutron_spec.rb │ │ ├── nova_compute_rbd_spec.rb │ │ ├── nova_compute_serial_spec.rb │ │ ├── nova_compute_spec.rb │ │ ├── nova_compute_spice_spec.rb │ │ ├── nova_compute_vmware_spec.rb │ │ ├── nova_compute_xenserver_spec.rb │ │ ├── nova_conductor_spec.rb │ │ ├── nova_config_spec.rb │ │ ├── nova_consoleauth_spec.rb │ │ ├── nova_cron_archive_deleted_rows_spec.rb │ │ ├── nova_db_mysql_api_spec.rb │ │ ├── nova_db_mysql_spec.rb │ │ ├── nova_db_postgresql_api_spec.rb │ │ ├── nova_db_postgresql_spec.rb │ │ ├── nova_db_spec.rb │ │ ├── nova_db_sync_api_spec.rb │ │ ├── nova_db_sync_spec.rb │ │ ├── nova_init_spec.rb │ │ ├── nova_ironic_common_spec.rb │ │ ├── nova_keystone_auth_spec.rb │ │ ├── nova_logging_spec.rb │ │ ├── nova_migration_libvirt_spec.rb │ │ ├── nova_network_flat_spec.rb │ │ ├── nova_network_flatdhcp_spec.rb │ │ ├── nova_network_neutron_spec.rb │ │ ├── nova_network_spec.rb │ │ ├── nova_network_vlan_spec.rb │ │ ├── nova_objectstore_spec.rb │ │ ├── nova_policy_spec.rb │ │ ├── nova_quota_spec.rb │ │ ├── nova_rabbitmq_spec.rb │ │ ├── nova_scheduler_filter_spec.rb │ │ ├── nova_scheduler_spec.rb │ │ ├── nova_serial_proxy_spec.rb │ │ ├── nova_spicehtml5_proxy_spec.rb │ │ ├── nova_utilities_spec.rb │ │ ├── nova_vnc_proxy_spec.rb │ │ └── nova_wsgi_apache_spec.rb │ ├── defines │ │ ├── nova_generic_service_spec.rb │ │ └── nova_manage_networks_spec.rb │ ├── fixtures │ │ └── manifests │ │ │ └── site.pp │ ├── hosts │ │ └── test-001_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ ├── type │ │ ├── nova_aggregate_spec.rb │ │ ├── nova_security_group_spec.rb │ │ └── nova_security_rule_spec.rb │ └── unit │ │ ├── provider │ │ ├── nova_config │ │ │ └── ini_setting_spec.rb │ │ ├── nova_floating │ │ │ └── nova_manage_spec.rb │ │ ├── nova_network │ │ │ └── nova_spec.rb │ │ ├── nova_security_group │ │ │ └── nova_spec.rb │ │ ├── nova_security_rule │ │ │ └── nova_spec.rb │ │ └── nova_spec.rb │ │ └── type │ │ ├── nova_config_spec.rb │ │ ├── nova_network_spec.rb │ │ ├── nova_security_group_spec.rb │ │ └── nova_security_rule_spec.rb ├── templates │ └── secret.xml-compute.erb ├── test-requirements.txt └── tox.ini ├── nssdb ├── .fixtures.yml ├── .travis.yml ├── CHANGELOG ├── Gemfile ├── LICENSE ├── Modulefile ├── README.md ├── Rakefile ├── manifests │ ├── add_cert_and_key.pp │ └── create.pp ├── spec │ ├── defines │ │ ├── nssdb_add_cert_and_key_spec.rb │ │ └── nssdb_create_spec.rb │ └── spec_helper.rb └── tests │ └── create.pp ├── ntp ├── .fixtures.yml ├── .gitignore ├── .nodeset.yml ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── lib │ └── puppet │ │ └── parser │ │ └── functions │ │ └── ntp_dirname.rb ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── params.pp │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── class_spec.rb │ │ ├── disable_monitoring_spec.rb │ │ ├── nodesets │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── default.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── fedora-21-x64.yml │ │ │ ├── sles-11-x64.yml │ │ │ ├── sles-12-64.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ └── ubuntu-server-14042-x64.yml │ │ ├── ntp_config_spec.rb │ │ ├── ntp_install_spec.rb │ │ ├── ntp_parameters_spec.rb │ │ ├── ntp_service_spec.rb │ │ ├── preferred_servers_spec.rb │ │ ├── restrict_spec.rb │ │ └── unsupported_spec.rb │ ├── classes │ │ └── ntp_spec.rb │ ├── fixtures │ │ └── modules │ │ │ └── my_ntp │ │ │ └── templates │ │ │ └── ntp.conf.erb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── puppet │ │ ├── provider │ │ └── README.markdown │ │ └── type │ │ └── README.markdown ├── templates │ └── ntp.conf.erb └── tests │ └── init.pp ├── opendaylight ├── .fixtures.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG ├── CONTRIBUTING.markdown ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── Vagrantfile ├── files │ └── upstart.odl.conf ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── params.pp │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── class_spec.rb │ │ └── nodesets │ │ │ ├── centos-7-docker.yml │ │ │ ├── centos-7.yml │ │ │ ├── default.yml │ │ │ ├── fedora-22.yml │ │ │ ├── fedora-23-docker.yml │ │ │ ├── ubuntu-1404-docker.yml │ │ │ └── ubuntu-1404.yml │ ├── classes │ │ ├── coverage_spec.rb │ │ └── opendaylight_spec.rb │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb └── templates │ ├── custom.properties.erb │ ├── jetty.xml.erb │ └── org.ops4j.pax.logging.cfg.erb ├── openstack_extras ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── redhat_repo.yaml ├── files │ ├── RPM-GPG-KEY-CentOS-SIG-Cloud │ ├── RPM-GPG-KEY-EPEL-6 │ └── RPM-GPG-KEY-EPEL-7 ├── lib │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ └── validate_yum_hash.rb │ │ └── provider │ │ ├── pacemaker_common.rb │ │ └── service │ │ └── pacemaker.rb ├── manifests │ ├── auth_file.pp │ ├── pacemaker │ │ └── service.pp │ └── repo │ │ ├── debian │ │ ├── debian.pp │ │ ├── params.pp │ │ └── ubuntu.pp │ │ └── redhat │ │ ├── params.pp │ │ └── redhat.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── add_centos_mirror-079eb2b38940f583.yaml │ │ ├── allow_change_uca_url-b855c119a693b583.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mitaka_features-6358feed90cd0b0b.yaml │ │ ├── mitaka_upgrade-79294b892d21dfc7.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── openstack_extras_auth_file_spec.rb │ │ └── openstack_extras_repo_spec.rb │ ├── classes │ │ ├── openstack_extras_auth_file_spec.rb │ │ ├── openstack_extras_repo_debian_debian_spec.rb │ │ ├── openstack_extras_repo_debian_ubuntu_spec.rb │ │ └── openstack_extras_repo_redhat_redhat_spec.rb │ ├── defines │ │ └── openstack_extras_pacemaker_service_spec.rb │ ├── fixtures │ │ └── manifests │ │ │ └── site.pp │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── puppet │ │ └── provider │ │ ├── cib.xml │ │ ├── pacemaker_common_spec.rb │ │ └── service │ │ └── pacemaker_spec.rb ├── templates │ ├── ocf_handler.erb │ └── openrc.erb ├── test-requirements.txt └── tox.ini ├── openstacklib ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── facts.d │ └── os_service_default.txt ├── lib │ ├── facter │ │ ├── os_package_type.rb │ │ └── os_service_default.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ ├── is_service_default.rb │ │ │ ├── normalize_ip_for_uri.rb │ │ │ └── os_database_connection.rb │ │ ├── provider │ │ ├── openstack.rb │ │ ├── openstack │ │ │ ├── auth.rb │ │ │ └── credentials.rb │ │ ├── openstack_config │ │ │ ├── ini_setting.rb │ │ │ └── ruby.rb │ │ └── policy_rcd │ │ │ └── policy_rcd.rb │ │ ├── type │ │ ├── openstack_config.rb │ │ └── policy_rcd.rb │ │ └── util │ │ ├── openstackconfig.rb │ │ └── openstackconfig │ │ └── section.rb ├── manifests │ ├── db │ │ ├── mysql.pp │ │ ├── mysql │ │ │ └── host_access.pp │ │ └── postgresql.pp │ ├── messaging │ │ └── rabbitmq.pp │ ├── openstackclient.pp │ ├── policy.pp │ ├── policy │ │ └── base.pp │ ├── policyrcd.pp │ ├── service_validation.pp │ └── wsgi │ │ └── apache.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── catch_403-237b79f33ab3364f.yaml │ │ ├── feature_add_exclusion_to_retry_mechanism-2acb52fa25bd315c.yaml │ │ ├── ipv6_array_support-ea28cf0939e820f6.yaml │ │ ├── ipv6_brackets-7a453aea5e091855.yaml │ │ ├── manage_policy_rc_d_file-747510db06792d52.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── more_db_options-d96316ae4eb5a78c.yaml │ │ ├── policy_rcd_provider-1ef3d203b9af1110.yaml │ │ ├── retry_client-b8a0e1f9ff679281.yaml │ │ ├── support_region_name_in_providers-cde6d75f0ddbec28.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── mysql_spec.rb │ │ ├── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── openstacklib_config_provider_spec.rb │ │ └── rabbitmq_spec.rb │ ├── classes │ │ ├── init_spec.rb │ │ ├── openstacklib_policy_spec.rb │ │ └── openstacklib_policyrcd_spec.rb │ ├── defines │ │ ├── openstacklib_db_mysql_host_access_spec.rb │ │ ├── openstacklib_db_mysql_spec.rb │ │ ├── openstacklib_db_postgresql_spec.rb │ │ ├── openstacklib_messaging_rabbitmq_spec.rb │ │ ├── openstacklib_policy_spec.rb │ │ ├── openstacklib_service_validation_spec.rb │ │ └── openstacklib_wsgi_apache_spec.rb │ ├── functions │ │ ├── is_service_default_spec.rb │ │ ├── normalize_ip_for_uri_spec.rb │ │ └── os_database_connection_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── openstack │ │ │ ├── auth_spec.rb │ │ │ └── credentials_spec.rb │ │ ├── openstack_config │ │ │ └── ini_setting_spec.rb │ │ ├── openstack_spec.rb │ │ └── policy_rcd │ │ │ └── policy_rcd_spec.rb │ │ ├── puppet │ │ └── util │ │ │ └── openstackconfig_spec.rb │ │ └── type │ │ └── policy_rcd_spec.rb ├── templates │ └── policy-rc.d.erb ├── test-requirements.txt └── tox.ini ├── pacemaker ├── .fixtures.yml ├── .gitignore ├── .gitreview ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── TODO.md ├── agent_generator │ ├── agent_generator.rb │ ├── generate_manifests.sh │ ├── src_xml │ │ ├── fence_apc.xml │ │ ├── fence_apc_snmp.xml │ │ ├── fence_bladecenter.xml │ │ ├── fence_brocade.xml │ │ ├── fence_cisco_mds.xml │ │ ├── fence_cisco_ucs.xml │ │ ├── fence_drac5.xml │ │ ├── fence_eaton_snmp.xml │ │ ├── fence_eps.xml │ │ ├── fence_hpblade.xml │ │ ├── fence_ibmblade.xml │ │ ├── fence_idrac.xml │ │ ├── fence_ifmib.xml │ │ ├── fence_ilo.xml │ │ ├── fence_ilo2.xml │ │ ├── fence_ilo3.xml │ │ ├── fence_ilo4.xml │ │ ├── fence_ilo_mp.xml │ │ ├── fence_imm.xml │ │ ├── fence_intelmodular.xml │ │ ├── fence_ipdu.xml │ │ ├── fence_ipmilan.xml │ │ ├── fence_kdump.xml │ │ ├── fence_rhevm.xml │ │ ├── fence_rsb.xml │ │ ├── fence_scsi.xml │ │ ├── fence_virt.xml │ │ ├── fence_vmware_soap.xml │ │ ├── fence_wti.xml │ │ └── fence_xvm.xml │ ├── update_sources.sh │ └── variables.sh ├── examples │ ├── pacemaker │ │ ├── host.pp │ │ └── setup.pp │ ├── pacemaker_colocation │ │ ├── create.pp │ │ ├── delete.pp │ │ ├── show.sh │ │ └── update.pp │ ├── pacemaker_location │ │ ├── create.pp │ │ ├── delete.pp │ │ ├── show.sh │ │ └── update.pp │ ├── pacemaker_operation_default │ │ ├── create.pp │ │ ├── delete.pp │ │ ├── show.sh │ │ └── update.pp │ ├── pacemaker_order │ │ ├── create.pp │ │ ├── delete.pp │ │ ├── show.sh │ │ └── update.pp │ ├── pacemaker_property │ │ ├── create.pp │ │ ├── delete.pp │ │ ├── show.sh │ │ └── update.pp │ ├── pacemaker_resource │ │ ├── create.pp │ │ ├── delete.pp │ │ ├── show.sh │ │ └── update.pp │ ├── pacemaker_resource_default │ │ ├── create.pp │ │ ├── delete.pp │ │ ├── show.sh │ │ └── update.pp │ └── service │ │ ├── clean.pp │ │ ├── start.pp │ │ └── stop.pp ├── lib │ ├── facter │ │ └── pacemaker_node_name.rb │ ├── pacemaker │ │ ├── options.rb │ │ ├── options.yaml │ │ ├── pcs │ │ │ ├── cluster_property.rb │ │ │ ├── common.rb │ │ │ ├── operation_default.rb │ │ │ ├── pcsd_auth.rb │ │ │ └── resource_default.rb │ │ ├── type.rb │ │ ├── wait.rb │ │ └── xml │ │ │ ├── cib.rb │ │ │ ├── constraint_colocations.rb │ │ │ ├── constraint_locations.rb │ │ │ ├── constraint_orders.rb │ │ │ ├── constraints.rb │ │ │ ├── debug.rb │ │ │ ├── helpers.rb │ │ │ ├── nodes.rb │ │ │ ├── operation_default.rb │ │ │ ├── primitives.rb │ │ │ ├── properties.rb │ │ │ ├── resource_default.rb │ │ │ ├── status.rb │ │ │ └── xml.rb │ ├── puppet │ │ ├── parser │ │ │ └── functions │ │ │ │ ├── pacemaker_cluster_nodes.rb │ │ │ │ ├── pacemaker_cluster_options.rb │ │ │ │ └── pacemaker_resource_parameters.rb │ │ ├── provider │ │ │ ├── pacemaker_colocation │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_location │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_nodes │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_noop.rb │ │ │ ├── pacemaker_online │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_operation_default │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ ├── pacemaker_pcs.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_order │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_pcs.rb │ │ │ ├── pacemaker_pcsd_auth │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_pcs.rb │ │ │ ├── pacemaker_property │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ ├── pacemaker_pcs.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_resource │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_resource_default │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ ├── pacemaker_pcs.rb │ │ │ │ └── pacemaker_xml.rb │ │ │ ├── pacemaker_xml.rb │ │ │ ├── pcmk_constraint │ │ │ │ └── default.rb │ │ │ ├── pcmk_resource │ │ │ │ └── default.rb │ │ │ ├── pcmk_resource_default │ │ │ │ └── pcs.rb │ │ │ └── service │ │ │ │ ├── pacemaker_noop.rb │ │ │ │ └── pacemaker_xml.rb │ │ └── type │ │ │ ├── pacemaker_colocation.rb │ │ │ ├── pacemaker_location.rb │ │ │ ├── pacemaker_nodes.rb │ │ │ ├── pacemaker_online.rb │ │ │ ├── pacemaker_operation_default.rb │ │ │ ├── pacemaker_order.rb │ │ │ ├── pacemaker_pcsd_auth.rb │ │ │ ├── pacemaker_property.rb │ │ │ ├── pacemaker_resource.rb │ │ │ ├── pacemaker_resource_default.rb │ │ │ ├── pcmk_constraint.rb │ │ │ ├── pcmk_resource.rb │ │ │ └── pcmk_resource_default.rb │ ├── serverspec │ │ └── type │ │ │ ├── pacemaker_colocation.rb │ │ │ ├── pacemaker_location.rb │ │ │ ├── pacemaker_operation_default.rb │ │ │ ├── pacemaker_order.rb │ │ │ ├── pacemaker_property.rb │ │ │ ├── pacemaker_resource.rb │ │ │ ├── pacemaker_resource_default.rb │ │ │ └── pacemaker_xml.rb │ └── tools │ │ ├── console.rb │ │ ├── provider.rb │ │ └── status.rb ├── manifests │ ├── constraint │ │ ├── base.pp │ │ ├── colocation.pp │ │ └── location.pp │ ├── contain.pp │ ├── corosync.pp │ ├── init.pp │ ├── install.pp │ ├── new.pp │ ├── new │ │ ├── firewall.pp │ │ ├── install.pp │ │ ├── params.pp │ │ ├── resource │ │ │ ├── filesystem.pp │ │ │ ├── ip.pp │ │ │ └── route.pp │ │ ├── service.pp │ │ ├── setup.pp │ │ ├── setup │ │ │ ├── auth_key.pp │ │ │ ├── config.pp │ │ │ ├── debian.pp │ │ │ └── pcsd.pp │ │ └── wrapper.pp │ ├── params.pp │ ├── property.pp │ ├── resource │ │ ├── filesystem.pp │ │ ├── ip.pp │ │ ├── lsb.pp │ │ ├── ocf.pp │ │ ├── route.pp │ │ ├── service.pp │ │ └── systemd.pp │ ├── resource_defaults.pp │ ├── service.pp │ ├── stonith.pp │ └── stonith │ │ ├── .gitkeep │ │ ├── fence_apc.pp │ │ ├── fence_apc_snmp.pp │ │ ├── fence_bladecenter.pp │ │ ├── fence_brocade.pp │ │ ├── fence_cisco_mds.pp │ │ ├── fence_cisco_ucs.pp │ │ ├── fence_drac5.pp │ │ ├── fence_eaton_snmp.pp │ │ ├── fence_eps.pp │ │ ├── fence_hpblade.pp │ │ ├── fence_ibmblade.pp │ │ ├── fence_idrac.pp │ │ ├── fence_ifmib.pp │ │ ├── fence_ilo.pp │ │ ├── fence_ilo2.pp │ │ ├── fence_ilo3.pp │ │ ├── fence_ilo4.pp │ │ ├── fence_ilo_mp.pp │ │ ├── fence_imm.pp │ │ ├── fence_intelmodular.pp │ │ ├── fence_ipdu.pp │ │ ├── fence_ipmilan.pp │ │ ├── fence_kdump.pp │ │ ├── fence_rhevm.pp │ │ ├── fence_rsb.pp │ │ ├── fence_scsi.pp │ │ ├── fence_virt.pp │ │ ├── fence_vmware_soap.pp │ │ ├── fence_wti.pp │ │ └── fence_xvm.pp ├── metadata.json ├── other-requirements.txt ├── releasenotes │ ├── notes │ │ └── feature_add_xenial_support-6ff98a4d9fd83e62.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── nodesets │ │ │ ├── disabled │ │ │ │ ├── centos-511-x64.yml │ │ │ │ ├── centos-66-x64-pe.yml │ │ │ │ ├── centos-66-x64.yml │ │ │ │ ├── centos-72-x64.yml │ │ │ │ ├── debian-78-x64.yml │ │ │ │ ├── debian-82-x64.yml │ │ │ │ ├── ubuntu-server-1204-x64.yml │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ ├── nodepool-xenial.yml │ │ │ ├── vagrant-centos-7.2-64.yml │ │ │ └── vagrant-ubuntu-14.04-64.yml │ │ ├── pacemaker_colocation_spec.rb │ │ ├── pacemaker_location_spec.rb │ │ ├── pacemaker_node_name_spec.rb │ │ ├── pacemaker_operation_default_spec.rb │ │ ├── pacemaker_order_spec.rb │ │ ├── pacemaker_property_spec.rb │ │ ├── pacemaker_resource_default_spec.rb │ │ ├── pacemaker_resource_spec.rb │ │ ├── pacemaker_service_spec.rb │ │ └── pacemaker_setup_spec.rb │ ├── classes │ │ ├── coverage_spec.rb │ │ ├── pacemaker_firewall_spec.rb │ │ ├── pacemaker_install_spec.rb │ │ ├── pacemaker_service_spec.rb │ │ ├── pacemaker_setup_auth_key_spec.rb │ │ ├── pacemaker_setup_config_spec.rb │ │ ├── pacemaker_setup_debian_spec.rb │ │ ├── pacemaker_setup_pcsd_spec.rb │ │ ├── pacemaker_setup_spec.rb │ │ └── pacemaker_spec.rb │ ├── defines │ │ ├── pacemaker_contain_spec.rb │ │ ├── pacemaker_resource_filesystem_spec.rb │ │ ├── pacemaker_resource_ip_spec.rb │ │ ├── pacemaker_resource_route_spec.rb │ │ └── pacemaker_wrapper_spec.rb │ ├── functions │ │ ├── pacemaker_cluster_nodes_spec.rb │ │ ├── pacemaker_cluster_options_spec.rb │ │ └── pacemaker_resource_parameters_spec.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── puppet │ │ ├── provider │ │ │ ├── cib.xml │ │ │ ├── pacemaker_colocation │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_location │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_nodes │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_noop_spec.rb │ │ │ ├── pacemaker_online │ │ │ │ └── xmk_spec.rb │ │ │ ├── pacemaker_operation_default │ │ │ │ ├── pcs_spec.rb │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_order │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_pcs_spec.rb │ │ │ ├── pacemaker_pcsd_auth │ │ │ │ └── pcs_spec.rb │ │ │ ├── pacemaker_property │ │ │ │ ├── pcs_spec.rb │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_resource │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_resource_default │ │ │ │ ├── pcs_spec.rb │ │ │ │ └── xml_spec.rb │ │ │ ├── pacemaker_xml_spec.rb │ │ │ └── service │ │ │ │ └── pacemaker_xml_spec.rb │ │ └── type │ │ │ ├── pacemaker_colocation_spec.rb │ │ │ ├── pacemaker_location_spec.rb │ │ │ ├── pacemaker_nodes_spec.rb │ │ │ ├── pacemaker_online_spec.rb │ │ │ ├── pacemaker_operation_default_spec.rb │ │ │ ├── pacemaker_order_spec.rb │ │ │ ├── pacemaker_pcsd_auth_spec.rb │ │ │ ├── pacemaker_property_spec.rb │ │ │ ├── pacemaker_resource_default_spec.rb │ │ │ └── pacemaker_resource_spec.rb │ │ └── serverspec │ │ └── type │ │ ├── pacemaker_colocation_spec.rb │ │ ├── pacemaker_location_spec.rb │ │ ├── pacemaker_operation_default_spec.rb │ │ ├── pacemaker_order_spec.rb │ │ ├── pacemaker_property_spec.rb │ │ ├── pacemaker_resource_default_spec.rb │ │ └── pacemaker_resource_spec.rb ├── templates │ ├── corosync.conf.erb │ ├── debian │ │ ├── cman_default.erb │ │ ├── corosync_default.erb │ │ ├── pacemaker_default.erb │ │ └── pacemaker_service.erb │ └── ocf_handler.sh.erb ├── test-requirements.txt └── tox.ini ├── rabbitmq ├── .fixtures.yml ├── .gitattributes ├── .gitignore ├── .nodeset.yml ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.md ├── Rakefile ├── files │ ├── README.markdown │ └── plugins │ │ ├── amqp_client-2.3.1.ez │ │ └── rabbit_stomp-2.3.1.ez ├── lib │ ├── facter │ │ └── rabbitmq_version.rb │ └── puppet │ │ ├── provider │ │ ├── rabbitmq_binding │ │ │ └── rabbitmqadmin.rb │ │ ├── rabbitmq_erlang_cookie │ │ │ └── ruby.rb │ │ ├── rabbitmq_exchange │ │ │ └── rabbitmqadmin.rb │ │ ├── rabbitmq_parameter │ │ │ └── rabbitmqctl.rb │ │ ├── rabbitmq_plugin │ │ │ └── rabbitmqplugins.rb │ │ ├── rabbitmq_policy │ │ │ └── rabbitmqctl.rb │ │ ├── rabbitmq_queue │ │ │ └── rabbitmqadmin.rb │ │ ├── rabbitmq_user │ │ │ └── rabbitmqctl.rb │ │ ├── rabbitmq_user_permissions │ │ │ └── rabbitmqctl.rb │ │ ├── rabbitmq_vhost │ │ │ └── rabbitmqctl.rb │ │ └── rabbitmqctl.rb │ │ └── type │ │ ├── rabbitmq_binding.rb │ │ ├── rabbitmq_erlang_cookie.rb │ │ ├── rabbitmq_exchange.rb │ │ ├── rabbitmq_parameter.rb │ │ ├── rabbitmq_plugin.rb │ │ ├── rabbitmq_policy.rb │ │ ├── rabbitmq_queue.rb │ │ ├── rabbitmq_user.rb │ │ ├── rabbitmq_user_permissions.rb │ │ └── rabbitmq_vhost.rb ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── install │ │ └── rabbitmqadmin.pp │ ├── management.pp │ ├── params.pp │ ├── repo │ │ ├── apt.pp │ │ └── rhel.pp │ ├── server.pp │ └── service.pp ├── metadata.json ├── spec │ ├── README.markdown │ ├── acceptance │ │ ├── class_spec.rb │ │ ├── clustering_spec.rb │ │ ├── delete_guest_user_spec.rb │ │ ├── nodesets │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── default.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── policy_spec.rb │ │ ├── queue_spec.rb │ │ ├── rabbitmqadmin_spec.rb │ │ ├── server_spec.rb │ │ ├── user_spec.rb │ │ ├── vhost_spec.rb │ │ └── zz281_spec.rb │ ├── classes │ │ └── rabbitmq_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── puppet │ │ ├── provider │ │ │ ├── rabbitmq_binding │ │ │ │ └── rabbitmqadmin_spec.rb │ │ │ ├── rabbitmq_exchange │ │ │ │ └── rabbitmqadmin_spec.rb │ │ │ ├── rabbitmq_parameter │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ ├── rabbitmq_plugin │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ ├── rabbitmq_policy │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ ├── rabbitmq_queue │ │ │ │ └── rabbitmqadmin_spec.rb │ │ │ ├── rabbitmq_user │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ ├── rabbitmq_user_permissions │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ └── rabbitmq_vhost │ │ │ │ └── rabbitmqctl_spec.rb │ │ └── type │ │ │ ├── rabbitmq_binding_spec.rb │ │ │ ├── rabbitmq_exchange_spec.rb │ │ │ ├── rabbitmq_parameter_spec.rb │ │ │ ├── rabbitmq_plugin_spec.rb │ │ │ ├── rabbitmq_policy_spec.rb │ │ │ ├── rabbitmq_queue_spec.rb │ │ │ ├── rabbitmq_user_permissions_spec.rb │ │ │ ├── rabbitmq_user_spec.rb │ │ │ └── rabbitmq_vhost_spec.rb │ │ └── rabbitmq_version_spec.rb ├── templates │ ├── README.markdown │ ├── default.erb │ ├── limits.conf │ ├── rabbitmq-env.conf.erb │ ├── rabbitmq-server.service.d │ │ └── limits.conf │ ├── rabbitmq.config.erb │ └── rabbitmqadmin.conf.erb └── tests │ ├── erlang_deps.pp │ ├── full.pp │ ├── permissions │ └── add.pp │ ├── plugin.pp │ ├── repo │ └── apt.pp │ ├── server.pp │ ├── service.pp │ ├── site.pp │ ├── user │ └── add.pp │ └── vhosts │ └── add.pp ├── redis ├── .fixtures.yml ├── .gitignore ├── .puppet-lint.rc ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── params.pp │ ├── preinstall.pp │ ├── sentinel.pp │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── nodesets │ │ │ └── default.yml │ │ └── redis_spec.rb │ ├── classes │ │ ├── redis_sentinel_spec.rb │ │ └── redis_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb └── templates │ ├── redis-sentinel.conf.erb │ ├── redis-sentinel.init.erb │ └── redis.conf.erb ├── remote ├── README ├── Rakefile ├── lib │ └── puppet │ │ ├── provider │ │ ├── remote_database │ │ │ └── mysql.rb │ │ ├── remote_database_grant │ │ │ └── mysql.rb │ │ └── remote_database_user │ │ │ └── mysql.rb │ │ └── type │ │ ├── remote_database.rb │ │ ├── remote_database_grant.rb │ │ └── remote_database_user.rb ├── manifests │ ├── mysql.pp │ └── params.pp └── spec │ ├── spec_helper.rb │ └── unit │ └── puppet │ ├── provider │ └── remote_database │ │ └── mysql_spec.rb │ └── type │ ├── remote_database_grant_spec.rb │ ├── remote_database_spec.rb │ └── remote_database_user_spec.rb ├── rsync ├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── files │ ├── defaults │ └── motd ├── manifests │ ├── get.pp │ ├── init.pp │ ├── put.pp │ ├── repo.pp │ ├── server.pp │ └── server │ │ └── module.pp ├── metadata.json ├── spec │ ├── classes │ │ └── server_spec.rb │ ├── defines │ │ ├── get_spec.rb │ │ ├── put_spec.rb │ │ └── server_module_spec.rb │ ├── spec.opts │ └── spec_helper.rb ├── templates │ ├── header.erb │ └── module.erb └── tests │ ├── init.pp │ ├── repo.pp │ └── server_with_motd.pp ├── sahara ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── basic.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── sahara_api_paste_ini │ │ │ └── ini_setting.rb │ │ └── sahara_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── sahara_api_paste_ini.rb │ │ └── sahara_config.rb ├── manifests │ ├── client.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── notify.pp │ ├── params.pp │ ├── policy.pp │ └── service │ │ ├── all.pp │ │ ├── api.pp │ │ └── engine.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── api_paste-b94e191896840944.yaml │ │ ├── deprecated_liberty-fb0633f26040dc46.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_sahara_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── sahara_all_spec.rb │ │ ├── sahara_api_spec.rb │ │ ├── sahara_client_spec.rb │ │ ├── sahara_config_spec.rb │ │ ├── sahara_db_mysql_spec.rb │ │ ├── sahara_db_postgresql_spec.rb │ │ ├── sahara_db_spec.rb │ │ ├── sahara_db_sync_spec.rb │ │ ├── sahara_engine_spec.rb │ │ ├── sahara_init_spec.rb │ │ ├── sahara_keystone_auth_spec.rb │ │ ├── sahara_logging_spec.rb │ │ ├── sahara_notify_spec.rb │ │ └── sahara_policy_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── sahara_api_paste_ini │ │ │ └── ini_setting_spec.rb │ │ └── sahara_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ ├── sahara_api_paste_ini_spec.rb │ │ └── sahara_config_spec.rb ├── test-requirements.txt └── tox.ini ├── sensu ├── .fixtures.yml ├── .gitignore ├── .pmignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── lib │ ├── puppet │ │ ├── feature │ │ │ └── json.rb │ │ ├── provider │ │ │ ├── package │ │ │ │ └── sensu_gem.rb │ │ │ ├── sensu_api_config │ │ │ │ └── json.rb │ │ │ ├── sensu_check │ │ │ │ └── json.rb │ │ │ ├── sensu_check_config │ │ │ │ └── json.rb │ │ │ ├── sensu_client_config │ │ │ │ └── json.rb │ │ │ ├── sensu_client_subscription │ │ │ │ └── json.rb │ │ │ ├── sensu_enterprise_dashboard_api_config │ │ │ │ └── json.rb │ │ │ ├── sensu_enterprise_dashboard_config │ │ │ │ └── json.rb │ │ │ ├── sensu_extension │ │ │ │ └── json.rb │ │ │ ├── sensu_filter │ │ │ │ └── json.rb │ │ │ ├── sensu_handler │ │ │ │ └── json.rb │ │ │ ├── sensu_mutator │ │ │ │ └── json.rb │ │ │ ├── sensu_rabbitmq_config │ │ │ │ └── json.rb │ │ │ └── sensu_redis_config │ │ │ │ └── json.rb │ │ └── type │ │ │ ├── sensu_api_config.rb │ │ │ ├── sensu_check.rb │ │ │ ├── sensu_check_config.rb │ │ │ ├── sensu_client_config.rb │ │ │ ├── sensu_client_subscription.rb │ │ │ ├── sensu_enterprise_dashboard_api_config.rb │ │ │ ├── sensu_enterprise_dashboard_config.rb │ │ │ ├── sensu_extension.rb │ │ │ ├── sensu_filter.rb │ │ │ ├── sensu_handler.rb │ │ │ ├── sensu_mutator.rb │ │ │ ├── sensu_rabbitmq_config.rb │ │ │ └── sensu_redis_config.rb │ └── puppet_x │ │ └── sensu │ │ ├── boolean_property.rb │ │ ├── provider_create.rb │ │ └── to_type.rb ├── manifests │ ├── api │ │ ├── config.pp │ │ └── service.pp │ ├── check.pp │ ├── client │ │ ├── config.pp │ │ └── service.pp │ ├── config.pp │ ├── enterprise │ │ ├── dashboard.pp │ │ ├── dashboard │ │ │ ├── api.pp │ │ │ ├── config.pp │ │ │ ├── package.pp │ │ │ └── service.pp │ │ ├── package.pp │ │ └── service.pp │ ├── extension.pp │ ├── filter.pp │ ├── handler.pp │ ├── init.pp │ ├── mutator.pp │ ├── package.pp │ ├── plugin.pp │ ├── plugins_dir.pp │ ├── rabbitmq │ │ └── config.pp │ ├── redis │ │ └── config.pp │ ├── repo │ │ ├── apt.pp │ │ └── yum.pp │ ├── server │ │ └── service.pp │ └── subscription.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── class_spec.rb │ │ └── nodesets │ │ │ ├── centos-65-x64.yml │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── ubuntu-server-1204-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── sensu_api_spec.rb │ │ ├── sensu_client_spec.rb │ │ ├── sensu_enterprise_spec.rb │ │ ├── sensu_init_spec.rb │ │ ├── sensu_package_spec.rb │ │ ├── sensu_rabbitmq_spec.rb │ │ ├── sensu_redis_spec.rb │ │ └── sensu_server_spec.rb │ ├── defines │ │ ├── sensu_check_spec.rb │ │ ├── sensu_extension_spec.rb │ │ ├── sensu_filter_spec.rb │ │ ├── sensu_handler_spec.rb │ │ ├── sensu_mutator_spec.rb │ │ ├── sensu_plugin_spec.rb │ │ └── sensu_subscription_spec.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── puppet_x_sensu_totype_spec.rb │ │ ├── sensu_enterprise_dashboard_config_spec.rb │ │ └── sensu_redis_config_spec.rb ├── templates │ ├── pubkey.gpg │ ├── sensu-client.erb │ └── sensu.erb └── tests │ ├── provision_client.sh │ ├── provision_server.sh │ ├── rabbitmq.pp │ ├── rabbitmq.sh │ ├── sensu-client.pp │ ├── sensu-server.pp │ └── uchiwa.pp ├── snmp ├── .fixtures.yml ├── .gitignore ├── .project ├── .puppet-lint.rc ├── .travis.yml ├── DEVELOP.md ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── manifests │ ├── client.pp │ ├── init.pp │ ├── params.pp │ └── snmpv3_user.pp ├── metadata.json ├── samples │ ├── snmpd.conf-Debian │ ├── snmpd.conf-RedHat │ ├── snmpd.conf-Suse │ ├── snmptrapd.conf-Debian │ └── snmptrapd.conf-RedHat ├── spec │ ├── classes │ │ ├── snmp_client_spec.rb │ │ └── snmp_init_spec.rb │ ├── defines │ │ └── snmp_snmpv3_user_spec.rb │ ├── spec.opts │ └── spec_helper.rb ├── templates │ ├── snmp.conf.erb │ ├── snmpd.conf.erb │ ├── snmpd.sysconfig-Debian.erb │ ├── snmpd.sysconfig-RedHat.erb │ ├── snmpd.sysconfig-Suse.erb │ ├── snmptrapd.conf.erb │ └── snmptrapd.sysconfig-RedHat.erb └── tests │ ├── client.pp │ ├── client_class.pp │ ├── init.pp │ ├── snmpd-snmptrapd.pp │ ├── snmpv3_user.pp │ └── trapd.pp ├── ssh ├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── files │ └── sshd_config ├── lib │ ├── facter │ │ ├── ssh_client_version.rb │ │ └── ssh_server_version.rb │ └── puppet │ │ └── parser │ │ └── functions │ │ └── ipaddresses.rb ├── manifests │ ├── client.pp │ ├── client │ │ ├── config.pp │ │ ├── config │ │ │ └── user.pp │ │ └── install.pp │ ├── hostkeys.pp │ ├── init.pp │ ├── knownhosts.pp │ ├── params.pp │ ├── server.pp │ ├── server │ │ ├── config.pp │ │ ├── host_key.pp │ │ ├── install.pp │ │ ├── match_block.pp │ │ ├── options.pp │ │ └── service.pp │ └── site.pp ├── metadata.json ├── spec │ ├── classes │ │ ├── client_spec.rb │ │ ├── init_spec.rb │ │ └── server_spec.rb │ ├── defines │ │ └── client │ │ │ └── config │ │ │ └── user_spec.rb │ ├── fixtures │ │ └── .gitignore │ ├── spec.opts │ └── spec_helper.rb ├── templates │ ├── options.erb │ ├── ssh_config.erb │ ├── sshd_config.erb │ └── sshd_match_block.erb └── tests │ ├── init.pp │ └── server.pp ├── staging ├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── docs │ ├── deploy.html │ ├── extract.html │ ├── file.html │ └── init.html ├── files │ ├── sample │ ├── sample.tar.bz2 │ └── sample.tar.gz ├── lib │ ├── facter │ │ ├── staging_http_get.rb │ │ └── staging_windir.rb │ └── puppet │ │ └── parser │ │ └── functions │ │ ├── scope_defaults.rb │ │ └── staging_parse.rb ├── manifests │ ├── deploy.pp │ ├── extract.pp │ ├── file.pp │ ├── init.pp │ └── params.pp ├── metadata.json ├── spec │ ├── defines │ │ ├── staging_deploy_spec.rb │ │ ├── staging_extract_spec.rb │ │ └── staging_file_spec.rb │ ├── fixtures │ │ └── hiera.yaml │ ├── spec_helper.rb │ └── unit │ │ └── puppet │ │ └── parser │ │ └── functions │ │ ├── scope_defaults_spec.rb │ │ └── staging_parse_spec.rb └── tests │ ├── deploy.pp │ ├── extract.pp │ ├── file.pp │ ├── init.pp │ ├── scope_defaults.pp │ └── staging_parse.pp ├── stdlib ├── .fixtures.yml ├── .gemspec ├── .gitattributes ├── .gitignore ├── .project ├── .rspec ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.markdown ├── README_DEVELOPER.markdown ├── README_SPECS.markdown ├── RELEASE_PROCESS.markdown ├── Rakefile ├── examples │ ├── file_line.pp │ ├── has_interface_with.pp │ ├── has_ip_address.pp │ ├── has_ip_network.pp │ └── init.pp ├── lib │ ├── facter │ │ ├── facter_dot_d.rb │ │ ├── package_provider.rb │ │ ├── pe_version.rb │ │ ├── puppet_vardir.rb │ │ ├── root_home.rb │ │ ├── service_provider.rb │ │ └── util │ │ │ └── puppet_settings.rb │ └── puppet │ │ ├── functions │ │ ├── is_a.rb │ │ └── type_of.rb │ │ ├── parser │ │ └── functions │ │ │ ├── abs.rb │ │ │ ├── any2array.rb │ │ │ ├── assert_private.rb │ │ │ ├── base64.rb │ │ │ ├── basename.rb │ │ │ ├── bool2num.rb │ │ │ ├── bool2str.rb │ │ │ ├── camelcase.rb │ │ │ ├── capitalize.rb │ │ │ ├── ceiling.rb │ │ │ ├── chomp.rb │ │ │ ├── chop.rb │ │ │ ├── clamp.rb │ │ │ ├── concat.rb │ │ │ ├── convert_base.rb │ │ │ ├── count.rb │ │ │ ├── deep_merge.rb │ │ │ ├── defined_with_params.rb │ │ │ ├── delete.rb │ │ │ ├── delete_at.rb │ │ │ ├── delete_undef_values.rb │ │ │ ├── delete_values.rb │ │ │ ├── difference.rb │ │ │ ├── dig.rb │ │ │ ├── dirname.rb │ │ │ ├── dos2unix.rb │ │ │ ├── downcase.rb │ │ │ ├── empty.rb │ │ │ ├── enclose_ipv6.rb │ │ │ ├── ensure_packages.rb │ │ │ ├── ensure_resource.rb │ │ │ ├── ensure_resources.rb │ │ │ ├── flatten.rb │ │ │ ├── floor.rb │ │ │ ├── fqdn_rand_string.rb │ │ │ ├── fqdn_rotate.rb │ │ │ ├── get_module_path.rb │ │ │ ├── getparam.rb │ │ │ ├── getvar.rb │ │ │ ├── grep.rb │ │ │ ├── has_interface_with.rb │ │ │ ├── has_ip_address.rb │ │ │ ├── has_ip_network.rb │ │ │ ├── has_key.rb │ │ │ ├── hash.rb │ │ │ ├── intersection.rb │ │ │ ├── is_absolute_path.rb │ │ │ ├── is_array.rb │ │ │ ├── is_bool.rb │ │ │ ├── is_domain_name.rb │ │ │ ├── is_float.rb │ │ │ ├── is_function_available.rb │ │ │ ├── is_hash.rb │ │ │ ├── is_integer.rb │ │ │ ├── is_ip_address.rb │ │ │ ├── is_ipv4_address.rb │ │ │ ├── is_ipv6_address.rb │ │ │ ├── is_mac_address.rb │ │ │ ├── is_numeric.rb │ │ │ ├── is_string.rb │ │ │ ├── join.rb │ │ │ ├── join_keys_to_values.rb │ │ │ ├── keys.rb │ │ │ ├── load_module_metadata.rb │ │ │ ├── loadyaml.rb │ │ │ ├── lstrip.rb │ │ │ ├── max.rb │ │ │ ├── member.rb │ │ │ ├── merge.rb │ │ │ ├── min.rb │ │ │ ├── num2bool.rb │ │ │ ├── parsejson.rb │ │ │ ├── parseyaml.rb │ │ │ ├── pick.rb │ │ │ ├── pick_default.rb │ │ │ ├── prefix.rb │ │ │ ├── private.rb │ │ │ ├── pw_hash.rb │ │ │ ├── range.rb │ │ │ ├── reject.rb │ │ │ ├── reverse.rb │ │ │ ├── rstrip.rb │ │ │ ├── seeded_rand.rb │ │ │ ├── shuffle.rb │ │ │ ├── size.rb │ │ │ ├── sort.rb │ │ │ ├── squeeze.rb │ │ │ ├── str2bool.rb │ │ │ ├── str2saltedsha512.rb │ │ │ ├── strftime.rb │ │ │ ├── strip.rb │ │ │ ├── suffix.rb │ │ │ ├── swapcase.rb │ │ │ ├── time.rb │ │ │ ├── to_bytes.rb │ │ │ ├── try_get_value.rb │ │ │ ├── type.rb │ │ │ ├── type3x.rb │ │ │ ├── union.rb │ │ │ ├── unique.rb │ │ │ ├── unix2dos.rb │ │ │ ├── upcase.rb │ │ │ ├── uriescape.rb │ │ │ ├── validate_absolute_path.rb │ │ │ ├── validate_array.rb │ │ │ ├── validate_augeas.rb │ │ │ ├── validate_bool.rb │ │ │ ├── validate_cmd.rb │ │ │ ├── validate_hash.rb │ │ │ ├── validate_integer.rb │ │ │ ├── validate_ip_address.rb │ │ │ ├── validate_ipv4_address.rb │ │ │ ├── validate_ipv6_address.rb │ │ │ ├── validate_numeric.rb │ │ │ ├── validate_re.rb │ │ │ ├── validate_slength.rb │ │ │ ├── validate_string.rb │ │ │ ├── validate_x509_rsa_key_pair.rb │ │ │ ├── values.rb │ │ │ ├── values_at.rb │ │ │ └── zip.rb │ │ ├── provider │ │ └── file_line │ │ │ └── ruby.rb │ │ └── type │ │ ├── anchor.rb │ │ └── file_line.rb ├── manifests │ ├── init.pp │ └── stages.pp ├── metadata.json └── spec │ ├── acceptance │ ├── abs_spec.rb │ ├── anchor_spec.rb │ ├── any2array_spec.rb │ ├── base64_spec.rb │ ├── bool2num_spec.rb │ ├── build_csv.rb │ ├── capitalize_spec.rb │ ├── ceiling_spec.rb │ ├── chomp_spec.rb │ ├── chop_spec.rb │ ├── clamp_spec.rb │ ├── concat_spec.rb │ ├── count_spec.rb │ ├── deep_merge_spec.rb │ ├── defined_with_params_spec.rb │ ├── delete_at_spec.rb │ ├── delete_spec.rb │ ├── delete_undef_values_spec.rb │ ├── delete_values_spec.rb │ ├── difference_spec.rb │ ├── dirname_spec.rb │ ├── downcase_spec.rb │ ├── empty_spec.rb │ ├── ensure_resource_spec.rb │ ├── flatten_spec.rb │ ├── floor_spec.rb │ ├── fqdn_rand_string_spec.rb │ ├── fqdn_rotate_spec.rb │ ├── get_module_path_spec.rb │ ├── getparam_spec.rb │ ├── getvar_spec.rb │ ├── grep_spec.rb │ ├── has_interface_with_spec.rb │ ├── has_ip_address_spec.rb │ ├── has_ip_network_spec.rb │ ├── has_key_spec.rb │ ├── hash_spec.rb │ ├── intersection_spec.rb │ ├── is_a_spec.rb │ ├── is_array_spec.rb │ ├── is_bool_spec.rb │ ├── is_domain_name_spec.rb │ ├── is_float_spec.rb │ ├── is_function_available_spec.rb │ ├── is_hash_spec.rb │ ├── is_integer_spec.rb │ ├── is_ip_address_spec.rb │ ├── is_ipv4_address_spec.rb │ ├── is_ipv6_address_spec.rb │ ├── is_mac_address_spec.rb │ ├── is_numeric_spec.rb │ ├── is_string_spec.rb │ ├── join_keys_to_values_spec.rb │ ├── join_spec.rb │ ├── keys_spec.rb │ ├── loadyaml_spec.rb │ ├── lstrip_spec.rb │ ├── max_spec.rb │ ├── member_spec.rb │ ├── merge_spec.rb │ ├── min_spec.rb │ ├── nodesets │ │ ├── centos-59-x64.yml │ │ ├── centos-6-vcloud.yml │ │ ├── centos-64-x64-pe.yml │ │ ├── centos-64-x64.yml │ │ ├── centos-65-x64.yml │ │ ├── default.yml │ │ ├── fedora-18-x64.yml │ │ ├── sles-11-x64.yml │ │ ├── ubuntu-server-10044-x64.yml │ │ ├── ubuntu-server-12042-x64.yml │ │ ├── ubuntu-server-1404-x64.yml │ │ ├── windows-2003-i386.yml │ │ ├── windows-2003-x86_64.yml │ │ ├── windows-2008-x86_64.yml │ │ ├── windows-2008r2-x86_64.yml │ │ ├── windows-2012-x86_64.yml │ │ └── windows-2012r2-x86_64.yml │ ├── num2bool_spec.rb │ ├── parsejson_spec.rb │ ├── parseyaml_spec.rb │ ├── pick_default_spec.rb │ ├── pick_spec.rb │ ├── prefix_spec.rb │ ├── pw_hash_spec.rb │ ├── range_spec.rb │ ├── reject_spec.rb │ ├── reverse_spec.rb │ ├── rstrip_spec.rb │ ├── shuffle_spec.rb │ ├── size_spec.rb │ ├── sort_spec.rb │ ├── squeeze_spec.rb │ ├── str2bool_spec.rb │ ├── str2saltedsha512_spec.rb │ ├── strftime_spec.rb │ ├── strip_spec.rb │ ├── suffix_spec.rb │ ├── swapcase_spec.rb │ ├── time_spec.rb │ ├── to_bytes_spec.rb │ ├── try_get_value_spec.rb │ ├── type_spec.rb │ ├── union_spec.rb │ ├── unique_spec.rb │ ├── unsupported_spec.rb │ ├── upcase_spec.rb │ ├── uriescape_spec.rb │ ├── validate_absolute_path_spec.rb │ ├── validate_array_spec.rb │ ├── validate_augeas_spec.rb │ ├── validate_bool_spec.rb │ ├── validate_cmd_spec.rb │ ├── validate_hash_spec.rb │ ├── validate_ipv4_address_spec.rb │ ├── validate_ipv6_address_spec.rb │ ├── validate_re_spec.rb │ ├── validate_slength_spec.rb │ ├── validate_string_spec.rb │ ├── values_at_spec.rb │ ├── values_spec.rb │ └── zip_spec.rb │ ├── fixtures │ ├── dscacheutil │ │ └── root │ ├── lsuser │ │ └── root │ └── modules │ │ └── stdlib │ │ ├── lib │ │ └── manifests │ ├── functions │ ├── abs_spec.rb │ ├── any2array_spec.rb │ ├── assert_private_spec.rb │ ├── base64_spec.rb │ ├── basename_spec.rb │ ├── bool2num_spec.rb │ ├── bool2str_spec.rb │ ├── camelcase_spec.rb │ ├── capitalize_spec.rb │ ├── ceiling_spec.rb │ ├── chomp_spec.rb │ ├── chop_spec.rb │ ├── clamp_spec.rb │ ├── concat_spec.rb │ ├── convert_base_spec.rb │ ├── count_spec.rb │ ├── deep_merge_spec.rb │ ├── defined_with_params_spec.rb │ ├── delete_at_spec.rb │ ├── delete_spec.rb │ ├── delete_undef_values_spec.rb │ ├── delete_values_spec.rb │ ├── difference_spec.rb │ ├── dig_spec.rb │ ├── dirname_spec.rb │ ├── dos2unix_spec.rb │ ├── downcase_spec.rb │ ├── empty_spec.rb │ ├── ensure_packages_spec.rb │ ├── ensure_resource_spec.rb │ ├── flatten_spec.rb │ ├── floor_spec.rb │ ├── fqdn_rand_string_spec.rb │ ├── fqdn_rotate_spec.rb │ ├── get_module_path_spec.rb │ ├── getparam_spec.rb │ ├── getvar_spec.rb │ ├── grep_spec.rb │ ├── has_interface_with_spec.rb │ ├── has_ip_address_spec.rb │ ├── has_ip_network_spec.rb │ ├── has_key_spec.rb │ ├── hash_spec.rb │ ├── intersection_spec.rb │ ├── is_a_spec.rb │ ├── is_array_spec.rb │ ├── is_bool_spec.rb │ ├── is_domain_name_spec.rb │ ├── is_float_spec.rb │ ├── is_function_available.rb │ ├── is_hash_spec.rb │ ├── is_integer_spec.rb │ ├── is_ip_address_spec.rb │ ├── is_mac_address_spec.rb │ ├── is_numeric_spec.rb │ ├── is_string_spec.rb │ ├── join_keys_to_values_spec.rb │ ├── join_spec.rb │ ├── keys_spec.rb │ ├── load_module_metadata_spec.rb │ ├── loadyaml_spec.rb │ ├── lstrip_spec.rb │ ├── max_spec.rb │ ├── member_spec.rb │ ├── merge_spec.rb │ ├── min_spec.rb │ ├── num2bool_spec.rb │ ├── parsejson_spec.rb │ ├── parseyaml_spec.rb │ ├── pick_default_spec.rb │ ├── pick_spec.rb │ ├── prefix_spec.rb │ ├── private_spec.rb │ ├── pw_hash_spec.rb │ ├── range_spec.rb │ ├── reject_spec.rb │ ├── reverse_spec.rb │ ├── rstrip_spec.rb │ ├── seeded_rand_spec.rb │ ├── shuffle_spec.rb │ ├── size_spec.rb │ ├── sort_spec.rb │ ├── squeeze_spec.rb │ ├── str2bool_spec.rb │ ├── str2saltedsha512_spec.rb │ ├── strftime_spec.rb │ ├── strip_spec.rb │ ├── suffix_spec.rb │ ├── swapcase_spec.rb │ ├── time_spec.rb │ ├── to_bytes_spec.rb │ ├── try_get_value_spec.rb │ ├── type3x_spec.rb │ ├── type_of_spec.rb │ ├── type_spec.rb │ ├── union_spec.rb │ ├── unique_spec.rb │ ├── unix2dos_spec.rb │ ├── upcase_spec.rb │ ├── uriescape_spec.rb │ ├── validate_absolute_path_spec.rb │ ├── validate_array_spec.rb │ ├── validate_augeas_spec.rb │ ├── validate_bool_spec.rb │ ├── validate_cmd_spec.rb │ ├── validate_hash_spec.rb │ ├── validate_integer_spec.rb │ ├── validate_ip_address_spec.rb │ ├── validate_ipv4_address_spec.rb │ ├── validate_ipv6_address_spec.rb │ ├── validate_numeric_spec.rb │ ├── validate_re_spec.rb │ ├── validate_slength_spec.rb │ ├── validate_string_spec.rb │ ├── validate_x509_rsa_key_pair_spec.rb │ ├── values_at_spec.rb │ ├── values_spec.rb │ └── zip_spec.rb │ ├── monkey_patches │ ├── alias_should_to_must.rb │ └── publicize_methods.rb │ ├── puppetlabs_spec_helper_clone.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ ├── facter │ ├── facter_dot_d_spec.rb │ ├── package_provider_spec.rb │ ├── pe_version_spec.rb │ ├── root_home_spec.rb │ ├── service_provider_spec.rb │ └── util │ │ └── puppet_settings_spec.rb │ └── puppet │ ├── parser │ └── functions │ │ ├── enclose_ipv6_spec.rb │ │ └── is_absolute_path_spec.rb │ ├── provider │ └── file_line │ │ └── ruby_spec.rb │ └── type │ ├── anchor_spec.rb │ └── file_line_spec.rb ├── swift ├── .gemfile ├── .gitignore ├── .gitreview ├── .sync.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── ext │ ├── swift.rb │ └── swift_keystone_test.rb ├── files │ └── swift_tester.rb ├── lib │ └── puppet │ │ ├── provider │ │ ├── ring_account_device │ │ │ └── swift_ring_builder.rb │ │ ├── ring_container_device │ │ │ └── swift_ring_builder.rb │ │ ├── ring_object_device │ │ │ └── swift_ring_builder.rb │ │ ├── service │ │ │ └── swiftinit.rb │ │ ├── swift_account_config │ │ │ └── ini_setting.rb │ │ ├── swift_bench_config │ │ │ └── ini_setting.rb │ │ ├── swift_config │ │ │ └── ini_setting.rb │ │ ├── swift_container_config │ │ │ └── ini_setting.rb │ │ ├── swift_container_sync_realms_config │ │ │ └── ini_setting.rb │ │ ├── swift_dispersion_config │ │ │ └── ini_setting.rb │ │ ├── swift_object_config │ │ │ └── ini_setting.rb │ │ ├── swift_object_expirer_config │ │ │ └── ini_setting.rb │ │ ├── swift_proxy_config │ │ │ └── ini_setting.rb │ │ └── swift_ring_builder.rb │ │ └── type │ │ ├── ring_account_device.rb │ │ ├── ring_container_device.rb │ │ ├── ring_object_device.rb │ │ ├── swift_account_config.rb │ │ ├── swift_bench_config.rb │ │ ├── swift_config.rb │ │ ├── swift_container_config.rb │ │ ├── swift_container_sync_realms_config.rb │ │ ├── swift_dispersion_config.rb │ │ ├── swift_object_config.rb │ │ ├── swift_object_expirer_config.rb │ │ └── swift_proxy_config.rb ├── manifests │ ├── auth_file.pp │ ├── bench.pp │ ├── client.pp │ ├── config.pp │ ├── dispersion.pp │ ├── init.pp │ ├── keystone │ │ ├── auth.pp │ │ └── dispersion.pp │ ├── objectexpirer.pp │ ├── params.pp │ ├── proxy.pp │ ├── proxy │ │ ├── account_quotas.pp │ │ ├── authtoken.pp │ │ ├── bulk.pp │ │ ├── cache.pp │ │ ├── catch_errors.pp │ │ ├── ceilometer.pp │ │ ├── container_quotas.pp │ │ ├── container_sync.pp │ │ ├── crossdomain.pp │ │ ├── dlo.pp │ │ ├── formpost.pp │ │ ├── gatekeeper.pp │ │ ├── healthcheck.pp │ │ ├── keystone.pp │ │ ├── proxy_logging.pp │ │ ├── ratelimit.pp │ │ ├── s3token.pp │ │ ├── slo.pp │ │ ├── staticweb.pp │ │ ├── swauth.pp │ │ ├── swift3.pp │ │ ├── tempauth.pp │ │ └── tempurl.pp │ ├── ringbuilder.pp │ ├── ringbuilder │ │ ├── create.pp │ │ └── rebalance.pp │ ├── ringserver.pp │ ├── ringsync.pp │ ├── service.pp │ ├── storage.pp │ ├── storage │ │ ├── account.pp │ │ ├── all.pp │ │ ├── container.pp │ │ ├── disk.pp │ │ ├── ext4.pp │ │ ├── filter │ │ │ ├── healthcheck.pp │ │ │ └── recon.pp │ │ ├── generic.pp │ │ ├── loopback.pp │ │ ├── mount.pp │ │ ├── node.pp │ │ ├── object.pp │ │ ├── server.pp │ │ └── xfs.pp │ ├── test_file.pp │ └── xfs.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── container_sync-5869bca433355047.yaml │ │ ├── cve-2016-9590-b493949d7df27489.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mitaka_deprecation-3344541c884cfed8.yaml │ │ ├── mitaka_features-52ecf51429531fbb.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_swift_spec.rb │ │ ├── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ └── swift_config_spec.rb │ ├── classes │ │ ├── swift_bench_spec.rb │ │ ├── swift_client_spec.rb │ │ ├── swift_config_spec.rb │ │ ├── swift_dispersion_spec.rb │ │ ├── swift_keystone_auth_spec.rb │ │ ├── swift_keystone_dispersion_spec.rb │ │ ├── swift_objectexpirer_spec.rb │ │ ├── swift_proxy_account_quotas_spec.rb │ │ ├── swift_proxy_authtoken_spec.rb │ │ ├── swift_proxy_bulk_spec.rb │ │ ├── swift_proxy_cache_spec.rb │ │ ├── swift_proxy_catch_errors_spec.rb │ │ ├── swift_proxy_ceilometer_spec.rb │ │ ├── swift_proxy_container_quotas_spec.rb │ │ ├── swift_proxy_container_sync_spec.rb │ │ ├── swift_proxy_crossdomain_spec.rb │ │ ├── swift_proxy_dlo_spec.rb │ │ ├── swift_proxy_formpost_spec.rb │ │ ├── swift_proxy_gatekeeper_spec.rb │ │ ├── swift_proxy_healthcheck_spec.rb │ │ ├── swift_proxy_keystone_spec.rb │ │ ├── swift_proxy_ratelimit_spec.rb │ │ ├── swift_proxy_s3token_spec.rb │ │ ├── swift_proxy_slo_spec.rb │ │ ├── swift_proxy_spec.rb │ │ ├── swift_proxy_staticweb_spec.rb │ │ ├── swift_proxy_swauth_spec.rb │ │ ├── swift_proxy_swift3_spec.rb │ │ ├── swift_proxy_tempauth_spec.rb │ │ ├── swift_proxy_tempurl_spec.rb │ │ ├── swift_ringbuilder_spec.rb │ │ ├── swift_ringserver_spec.rb │ │ ├── swift_spec.rb │ │ ├── swift_storage_account_spec.rb │ │ ├── swift_storage_all_spec.rb │ │ ├── swift_storage_container_spec.rb │ │ ├── swift_storage_object_spec.rb │ │ ├── swift_storage_spec.rb │ │ ├── swift_test_file_spec.rb │ │ └── swift_xfs_spec.rb │ ├── defines │ │ ├── swift_ringbuilder_create_spec.rb │ │ ├── swift_ringbuilder_rebalance_spec.rb │ │ ├── swift_storage_disk_spec.rb │ │ ├── swift_storage_filter_healthcheck_spec.rb │ │ ├── swift_storage_filter_recon_spec.rb │ │ ├── swift_storage_generic_spec.rb │ │ ├── swift_storage_loopback_spec.rb │ │ ├── swift_storage_mount_spec.rb │ │ ├── swift_storage_node_spec.rb │ │ ├── swift_storage_server_spec.rb │ │ └── swift_storage_xfs_spec.rb │ ├── shared_examples.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── swift_account_config │ │ │ └── ini_setting_spec.rb │ │ ├── swift_bench_config │ │ │ └── ini_setting_spec.rb │ │ ├── swift_config │ │ │ └── ini_setting_spec.rb │ │ ├── swift_container_config │ │ │ └── ini_setting_spec.rb │ │ ├── swift_container_sync_realms_config │ │ │ └── ini_setting_spec.rb │ │ ├── swift_dispersion_config │ │ │ └── ini_setting_spec.rb │ │ ├── swift_object_config │ │ │ └── ini_setting_spec.rb │ │ ├── swift_object_expirer_config │ │ │ └── ini_setting_spec.rb │ │ └── swift_proxy_config │ │ │ └── ini_setting_spec.rb │ │ ├── puppet │ │ ├── provider │ │ │ ├── service │ │ │ │ └── swiftinit_spec.rb │ │ │ └── swift_ring_builder_spec.rb │ │ └── type │ │ │ ├── ring_account_device_spec.rb │ │ │ ├── ring_container_device_spec.rb │ │ │ └── ring_object_device_spec.rb │ │ └── type │ │ ├── swift_account_config_spec.rb │ │ ├── swift_bench_config_spec.rb │ │ ├── swift_config_spec.rb │ │ ├── swift_container_config_spec.rb │ │ ├── swift_container_sync_realms_config.rb │ │ ├── swift_dispersion_config_spec.rb │ │ ├── swift_object_config_spec.rb │ │ ├── swift_object_expirer_config_spec.rb │ │ └── swift_proxy_config_spec.rb ├── templates │ ├── account-server.conf.erb │ ├── container-server.conf.erb │ ├── object-server.conf.erb │ ├── proxy-server.conf.erb │ ├── proxy │ │ ├── account_quotas.conf.erb │ │ ├── authtoken.conf.erb │ │ ├── bulk.conf.erb │ │ ├── cache.conf.erb │ │ ├── catch_errors.conf.erb │ │ ├── ceilometer.conf.erb │ │ ├── container_quotas.conf.erb │ │ ├── container_sync.conf.erb │ │ ├── crossdomain.conf.erb │ │ ├── dlo.conf.erb │ │ ├── formpost.conf.erb │ │ ├── gatekeeper.conf.erb │ │ ├── healthcheck.conf.erb │ │ ├── keystone.conf.erb │ │ ├── proxy-logging.conf.erb │ │ ├── ratelimit.conf.erb │ │ ├── s3token.conf.erb │ │ ├── slo.conf.erb │ │ ├── staticweb.conf.erb │ │ ├── swauth.conf.erb │ │ ├── swift3.conf.erb │ │ ├── tempauth.conf.erb │ │ └── tempurl.conf.erb │ ├── recon.conf.erb │ ├── rsyncd.conf.erb │ └── swift_keystone_test.erb ├── test-requirements.txt ├── tests │ ├── all.pp │ └── site.pp └── tox.ini ├── sysctl ├── .gitignore ├── .travis.yml ├── Gemfile ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ ├── provider │ │ ├── sysctl │ │ │ └── parsed.rb │ │ └── sysctl_runtime │ │ │ └── sysctl_runtime.rb │ │ └── type │ │ ├── sysctl.rb │ │ └── sysctl_runtime.rb ├── manifests │ ├── base.pp │ ├── value.pp │ └── values.pp ├── metadata.json └── spec │ ├── classes │ └── sysctl_values_spec.rb │ ├── defines │ └── value_spec.rb │ └── spec_helper.rb ├── tempest ├── .gitignore ├── .gitreview ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ ├── provider │ │ ├── tempest.rb │ │ ├── tempest_config │ │ │ └── ini_setting.rb │ │ ├── tempest_glance_id_setter │ │ │ └── openstack.rb │ │ └── tempest_neutron_net_id_setter │ │ │ └── openstack.rb │ │ └── type │ │ ├── tempest_config.rb │ │ ├── tempest_glance_id_setter.rb │ │ └── tempest_neutron_net_id_setter.rb ├── manifests │ ├── config.pp │ ├── init.pp │ └── params.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mitaka_features-985958b8632659c0.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_tempest_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── tempest_config_spec.rb │ │ └── tempest_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ └── tempest_config │ │ │ └── ini_setting_spec.rb │ │ ├── puppet │ │ └── provider │ │ │ └── ruby_spec.rb │ │ └── type │ │ ├── tempest_config_spec.rb │ │ ├── tempest_glance_id_setter_spec.rb │ │ └── tempest_neutron_net_id_setter_spec.rb ├── test-requirements.txt ├── tests │ └── init.pp └── tox.ini ├── timezone ├── .fixtures.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── manifests │ ├── init.pp │ └── params.pp ├── metadata.json ├── spec │ ├── classes │ │ └── timezone_spec.rb │ ├── spec_helper.rb │ └── support │ │ ├── debian.rb │ │ ├── freebsd.rb │ │ ├── gentoo.rb │ │ ├── redhat.rb │ │ └── validate_params.rb ├── templates │ ├── clock.erb │ └── timezone.erb └── tests │ └── init.pp ├── tomcat ├── .fixtures.yml ├── .geppetto-rc.json ├── .gitignore ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ ├── default_install_from_package.pp │ ├── default_install_from_source.pp │ ├── instance_with_context.pp │ ├── instance_with_listener.pp │ ├── instance_with_realm.pp │ ├── instance_with_role_and_user.pp │ ├── jsvc_install_from_source.pp │ └── multiple_instances.pp ├── manifests │ ├── config │ │ ├── server.pp │ │ └── server │ │ │ ├── connector.pp │ │ │ ├── context.pp │ │ │ ├── engine.pp │ │ │ ├── host.pp │ │ │ ├── listener.pp │ │ │ ├── realm.pp │ │ │ ├── service.pp │ │ │ ├── tomcat_users.pp │ │ │ └── valve.pp │ ├── init.pp │ ├── instance.pp │ ├── instance │ │ ├── package.pp │ │ └── source.pp │ ├── params.pp │ ├── service.pp │ ├── setenv │ │ └── entry.pp │ └── war.pp ├── metadata.json └── spec │ ├── acceptance │ ├── acceptance_1_spec.rb │ ├── acceptance_2_spec.rb │ ├── acceptance_3_spec.rb │ └── nodesets │ │ ├── centos-510-x64.yml │ │ ├── centos-59-x64.yml │ │ ├── centos-64-x64-pe.yml │ │ ├── centos-65-x64.yml │ │ ├── default.yml │ │ ├── ubuntu-server-10044-x64.yml │ │ ├── ubuntu-server-12042-x64.yml │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ ├── init_spec.rb │ └── tomcat_spec.rb │ ├── defines │ ├── config │ │ ├── server │ │ │ ├── connector_spec.rb │ │ │ ├── context_spec.rb │ │ │ ├── engine_spec.rb │ │ │ ├── host_spec.rb │ │ │ ├── listener_spec.rb │ │ │ ├── realm_spec.rb │ │ │ ├── service_spec.rb │ │ │ ├── tomcat_users_spec.rb │ │ │ └── valve_spec.rb │ │ └── server_spec.rb │ ├── instance │ │ ├── package_spec.rb │ │ └── source_spec.rb │ ├── instance_spec.rb │ ├── service_spec.rb │ ├── setenv │ │ └── entry_spec.rb │ └── war_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb ├── tripleo ├── .fixtures.yml ├── .gitignore ├── .gitreview ├── .sync.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ ├── facter │ │ ├── galera_bootstrapped.rb │ │ └── netmask_ipv6.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ ├── extract_id.rb │ │ │ ├── interface_for_ip.rb │ │ │ ├── list_to_zookeeper_hash.rb │ │ │ └── local_fence_devices.rb │ │ ├── provider │ │ ├── package │ │ │ └── norpm.rb │ │ └── package_manifest │ │ │ └── flat_file.rb │ │ └── type │ │ └── package_manifest.rb ├── manifests │ ├── cluster │ │ ├── cassandra.pp │ │ └── zookeeper.pp │ ├── fencing.pp │ ├── firewall.pp │ ├── firewall │ │ ├── post.pp │ │ ├── pre.pp │ │ └── rule.pp │ ├── init.pp │ ├── loadbalancer.pp │ ├── network │ │ └── midonet │ │ │ ├── agent.pp │ │ │ └── api.pp │ ├── noop.pp │ ├── packages.pp │ ├── profile │ │ ├── base │ │ │ ├── database │ │ │ │ └── schemas.pp │ │ │ └── keystone.pp │ │ └── pacemaker │ │ │ ├── database │ │ │ └── schemas.pp │ │ │ └── keystone.pp │ ├── redis_notification.pp │ └── ssl │ │ └── cinder_config.pp ├── spec │ ├── acceptance │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── tripleo_cluster_cassandra_spec.rb │ │ ├── tripleo_cluster_zookeeper_spec.rb │ │ ├── tripleo_firewall_spec.rb │ │ ├── tripleo_init_spec.rb │ │ ├── tripleo_midonet_agent_spec.rb │ │ ├── tripleo_midonet_api_spec.rb │ │ └── tripleo_packages_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── type │ │ └── package_manifest_spec.rb └── templates │ ├── database │ ├── clustercheck.erb │ ├── debian.cnf.erb │ ├── etc_initd_mysql_Debian │ ├── etc_initd_mysql_RedHat │ ├── mysql.conf.erb │ └── mysqlchk.erb │ └── redis │ └── redis-notifications.sh.erb ├── trove ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── site.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── trove.rb │ │ ├── trove_api_paste_ini │ │ │ └── ini_setting.rb │ │ ├── trove_conductor_config │ │ │ └── ini_setting.rb │ │ ├── trove_config │ │ │ └── ini_setting.rb │ │ ├── trove_datastore │ │ │ └── trove.rb │ │ ├── trove_datastore_version │ │ │ └── trove.rb │ │ ├── trove_guestagent_config │ │ │ └── ini_setting.rb │ │ └── trove_taskmanager_config │ │ │ └── ini_setting.rb │ │ └── type │ │ ├── trove_api_paste_ini.rb │ │ ├── trove_conductor_config.rb │ │ ├── trove_config.rb │ │ ├── trove_datastore.rb │ │ ├── trove_datastore_version.rb │ │ ├── trove_guestagent_config.rb │ │ └── trove_taskmanager_config.rb ├── manifests │ ├── api.pp │ ├── client.pp │ ├── conductor.pp │ ├── config.pp │ ├── db.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── deps.pp │ ├── generic_service.pp │ ├── guestagent.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── params.pp │ ├── quota.pp │ └── taskmanager.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── external_dependency_management-4f5c1e349d9983fb.yaml │ │ ├── make_client_more_configurable-aa43f623d8c9d3c7.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mitka_deprecations-08a9171d3ec8bb5b.yaml │ │ ├── notifications-77b6674b294c74e5.yaml │ │ ├── pymysql-e57bf1f0289dd426.yaml │ │ ├── rabbit_hosts_in_guestagent_template-00c3a03cf1f2be39.yaml │ │ ├── remove_qpid-0b446db43fdea617.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_trove_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ ├── trove_api_spec.rb │ │ ├── trove_client_spec.rb │ │ ├── trove_conductor_spec.rb │ │ ├── trove_config_spec.rb │ │ ├── trove_db_mysql_spec.rb │ │ ├── trove_db_postgresql_spec.rb │ │ ├── trove_db_spec.rb │ │ ├── trove_deps_spec.rb │ │ ├── trove_guestagent_spec.rb │ │ ├── trove_init_spec.rb │ │ ├── trove_keystone_auth_spec.rb │ │ ├── trove_logging_spec.rb │ │ ├── trove_quota_spec.rb │ │ └── trove_taskmanager_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ ├── trove_config │ │ │ └── ini_setting_spec.rb │ │ ├── trove_datastore │ │ │ └── trove_spec.rb │ │ ├── trove_datastore_version │ │ │ └── trove_spec.rb │ │ └── trove_spec.rb │ │ └── type │ │ ├── trove_conductor_config_spec.rb │ │ ├── trove_conductor_guestagent_spec.rb │ │ └── trove_config_spec.rb ├── templates │ └── trove-guestagent.conf.erb ├── test-requirements.txt └── tox.ini ├── uchiwa ├── .fixtures.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTORS ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.markdown ├── Rakefile ├── manifests │ ├── config.pp │ ├── init.pp │ ├── install.pp │ ├── params.pp │ ├── repo │ │ ├── apt.pp │ │ └── yum.pp │ └── service.pp ├── metadata.json ├── spec │ ├── acceptance │ │ ├── class_spec.rb │ │ └── nodesets │ │ │ ├── centos-64-x64.yml │ │ │ ├── default.yml │ │ │ └── ubuntu-server-12042-x64.yml │ ├── classes │ │ └── uchiwa_spec.rb │ ├── spec_helper.rb │ └── spec_helper_acceptance.rb └── templates │ └── etc │ └── sensu │ └── uchiwa.json.erb ├── vcsrepo ├── .gitignore ├── .sync.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── examples │ ├── bzr │ │ ├── branch.pp │ │ └── init_repo.pp │ ├── cvs │ │ ├── local.pp │ │ └── remote.pp │ ├── git │ │ ├── bare_init.pp │ │ ├── clone.pp │ │ ├── shallow-clone-with-just-one-commit.pp │ │ └── working_copy_init.pp │ ├── hg │ │ ├── clone.pp │ │ ├── clone_basic_auth.pp │ │ └── init_repo.pp │ ├── p4 │ │ ├── create_client.pp │ │ ├── delete_client.pp │ │ ├── latest_client.pp │ │ └── sync_client.pp │ └── svn │ │ ├── checkout.pp │ │ └── server.pp ├── lib │ └── puppet │ │ ├── provider │ │ ├── vcsrepo.rb │ │ └── vcsrepo │ │ │ ├── bzr.rb │ │ │ ├── cvs.rb │ │ │ ├── dummy.rb │ │ │ ├── git.rb │ │ │ ├── hg.rb │ │ │ ├── p4.rb │ │ │ └── svn.rb │ │ └── type │ │ └── vcsrepo.rb ├── metadata.json └── spec │ ├── acceptance │ ├── beaker │ │ └── git │ │ │ ├── basic_auth │ │ │ ├── basic_auth_checkout_http.rb │ │ │ ├── basic_auth_checkout_https.rb │ │ │ └── negative │ │ │ │ └── basic_auth_checkout_git.rb │ │ │ ├── branch_checkout │ │ │ ├── branch_checkout_file.rb │ │ │ ├── branch_checkout_file_path.rb │ │ │ ├── branch_checkout_git.rb │ │ │ ├── branch_checkout_http.rb │ │ │ ├── branch_checkout_https.rb │ │ │ ├── branch_checkout_scp.rb │ │ │ ├── branch_checkout_ssh.rb │ │ │ └── negative │ │ │ │ └── branch_checkout_not_exists.rb │ │ │ ├── clone │ │ │ ├── clone_file.rb │ │ │ ├── clone_file_path.rb │ │ │ ├── clone_git.rb │ │ │ ├── clone_http.rb │ │ │ ├── clone_https.rb │ │ │ ├── clone_over_different_exiting_repo_with_force.rb │ │ │ ├── clone_repo_with_excludes_in_repo.rb │ │ │ ├── clone_repo_with_excludes_not_in_repo.rb │ │ │ ├── clone_scp.rb │ │ │ ├── clone_ssh.rb │ │ │ └── negative │ │ │ │ ├── clone_over_different_exiting_repo.rb │ │ │ │ └── clone_repo_with_exec_excludes.rb │ │ │ ├── compression │ │ │ ├── compression_0_checkout.rb │ │ │ ├── compression_1_checkout.rb │ │ │ ├── compression_2_checkout.rb │ │ │ ├── compression_3_checkout.rb │ │ │ ├── compression_4_checkout.rb │ │ │ ├── compression_5_checkout.rb │ │ │ ├── compression_6_checkout.rb │ │ │ └── negative │ │ │ │ ├── compression_7_checkout.rb │ │ │ │ ├── compression_alpha_checkout.rb │ │ │ │ ├── compression_eval_checkout.rb │ │ │ │ ├── compression_exec_checkout.rb │ │ │ │ └── compression_negative_checkout.rb │ │ │ ├── create │ │ │ ├── create_bare_repo_that_already_exists.rb │ │ │ ├── create_repo_that_already_exists.rb │ │ │ └── negative │ │ │ │ └── create_bare_repo_specifying_revision.rb │ │ │ ├── group_checkout │ │ │ ├── group_checkout_file.rb │ │ │ ├── group_checkout_file_path.rb │ │ │ ├── group_checkout_git.rb │ │ │ ├── group_checkout_http.rb │ │ │ ├── group_checkout_https.rb │ │ │ ├── group_checkout_scp.rb │ │ │ ├── group_checkout_ssh.rb │ │ │ └── negative │ │ │ │ └── group_checkout_file_non_existent_group.rb │ │ │ ├── revision_checkout │ │ │ ├── negative │ │ │ │ └── revision_checkout_not_exists.rb │ │ │ ├── revision_checkout_file.rb │ │ │ ├── revision_checkout_file_path.rb │ │ │ ├── revision_checkout_git.rb │ │ │ ├── revision_checkout_http.rb │ │ │ ├── revision_checkout_https.rb │ │ │ ├── revision_checkout_scp.rb │ │ │ └── revision_checkout_ssh.rb │ │ │ ├── shallow_clone │ │ │ ├── negative │ │ │ │ ├── shallow_clone_exec_depth.rb │ │ │ │ ├── shallow_clone_file_path.rb │ │ │ │ ├── shallow_clone_http.rb │ │ │ │ ├── shallow_clone_negative_depth.rb │ │ │ │ └── shallow_clone_overflow_depth.rb │ │ │ ├── shallow_clone_file.rb │ │ │ ├── shallow_clone_git.rb │ │ │ ├── shallow_clone_https.rb │ │ │ ├── shallow_clone_scp.rb │ │ │ ├── shallow_clone_ssh.rb │ │ │ └── shallow_clone_zero_depth.rb │ │ │ ├── tag_checkout │ │ │ ├── negative │ │ │ │ └── tag_checkout_not_exists.rb │ │ │ ├── tag_checkout_file.rb │ │ │ ├── tag_checkout_file_path.rb │ │ │ ├── tag_checkout_git.rb │ │ │ ├── tag_checkout_http.rb │ │ │ ├── tag_checkout_https.rb │ │ │ ├── tag_checkout_scp.rb │ │ │ └── tag_checkout_ssh.rb │ │ │ └── user_checkout │ │ │ ├── negative │ │ │ └── user_checkout_file_non_existent_user.rb │ │ │ ├── user_checkout_file.rb │ │ │ ├── user_checkout_file_path.rb │ │ │ ├── user_checkout_git.rb │ │ │ ├── user_checkout_http.rb │ │ │ ├── user_checkout_https.rb │ │ │ ├── user_checkout_scp.rb │ │ │ └── user_checkout_ssh.rb │ ├── beaker_helper.rb │ ├── clone_repo_spec.rb │ ├── create_repo_spec.rb │ ├── files │ │ ├── create_git_repo.sh │ │ ├── server.crt │ │ └── server.key │ ├── modules_1596_spec.rb │ ├── modules_1800_spec.rb │ ├── modules_2326_spec.rb │ ├── modules_660_spec.rb │ ├── modules_753_spec.rb │ ├── nodesets │ │ ├── centos-59-x64.yml │ │ ├── centos-64-x64-pe.yml │ │ ├── centos-64-x64.yml │ │ ├── centos-65-x64.yml │ │ ├── debian-607-x64.yml │ │ ├── debian-73-x64.yml │ │ ├── default.yml │ │ ├── ubuntu-server-10044-x64.yml │ │ ├── ubuntu-server-12042-x64.yml │ │ └── ubuntu-server-1404-x64.yml │ ├── remove_repo_spec.rb │ └── remove_repo_spec_noop.rb │ ├── fixtures │ ├── bzr_version_info.txt │ ├── git_branch_a.txt │ ├── git_branch_feature_bar.txt │ ├── git_branch_none.txt │ ├── hg_parents.txt │ ├── hg_tags.txt │ └── svn_info.txt │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ ├── support │ ├── filesystem_helpers.rb │ └── fixture_helpers.rb │ └── unit │ └── puppet │ ├── provider │ └── vcsrepo │ │ ├── bzr_spec.rb │ │ ├── cvs_spec.rb │ │ ├── git_spec.rb │ │ ├── hg_spec.rb │ │ ├── p4_spec.rb │ │ └── svn_spec.rb │ └── type │ └── README.markdown ├── vlan ├── LICENSE ├── README ├── manifests │ └── init.pp └── templates │ └── ifcfg.erb ├── vswitch ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ ├── facter │ │ └── ovs.rb │ ├── puppet │ │ ├── provider │ │ │ ├── vs_bridge │ │ │ │ └── ovs.rb │ │ │ ├── vs_config │ │ │ │ └── ovs.rb │ │ │ └── vs_port │ │ │ │ ├── ovs.rb │ │ │ │ ├── ovs_redhat.rb │ │ │ │ └── ovs_redhat_el6.rb │ │ └── type │ │ │ ├── vs_bridge.rb │ │ │ ├── vs_config.rb │ │ │ └── vs_port.rb │ └── puppetx │ │ └── redhat │ │ └── ifcfg.rb ├── manifests │ ├── init.pp │ ├── ovs.pp │ └── params.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ ├── mitaka_features-9ac623e2507113ea.yaml │ │ ├── mitaka_fix-f2f262d9c3e44955.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── basic_vswitch_spec.rb │ │ └── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ ├── classes │ │ └── vswitch_ovs_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ └── puppet │ │ └── lib │ │ ├── provider │ │ └── vs_config_ovs_spec.rb │ │ └── type │ │ ├── vs_bridge_spec.rb │ │ └── vs_config_spec.rb ├── test-requirements.txt └── tox.ini ├── xinetd ├── .fixtures.yml ├── .gitignore ├── .nodeset.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples │ └── init.pp ├── manifests │ ├── init.pp │ ├── params.pp │ └── service.pp ├── metadata.json ├── spec │ ├── classes │ │ └── xinetd_init_spec.rb │ ├── defines │ │ └── xinetd_service_spec.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── spec_helper_system.rb │ └── system │ │ ├── class_spec.rb │ │ └── service_spec.rb └── templates │ ├── service.erb │ └── xinetd.conf.erb ├── zaqar ├── .gitignore ├── .gitreview ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib │ └── puppet │ │ ├── provider │ │ └── zaqar_config │ │ │ └── ini_setting.rb │ │ └── type │ │ └── zaqar_config.rb ├── manifests │ ├── config.pp │ ├── db │ │ ├── mysql.pp │ │ ├── postgresql.pp │ │ └── sync.pp │ ├── init.pp │ ├── keystone │ │ └── auth.pp │ ├── logging.pp │ ├── management │ │ └── mongodb.pp │ ├── messaging │ │ └── mongodb.pp │ ├── params.pp │ ├── policy.pp │ ├── server.pp │ ├── server_instance.pp │ └── transport │ │ ├── websocket.pp │ │ └── wsgi.pp ├── metadata.json ├── releasenotes │ ├── notes │ │ ├── first_release-49053598de80657d.yaml │ │ ├── mitaka-dece9d43a565e6cb.yaml │ │ └── use-reno-1caaec4ba5aa4285.yaml │ └── source │ │ ├── _static │ │ └── .placeholder │ │ ├── conf.py │ │ ├── index.rst │ │ ├── mitaka.rst │ │ └── unreleased.rst ├── setup.cfg ├── setup.py ├── spec │ ├── acceptance │ │ ├── nodesets │ │ │ ├── centos-70-x64.yml │ │ │ ├── default.yml │ │ │ ├── nodepool-centos7.yml │ │ │ ├── nodepool-trusty.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ └── zaqar_mongo_spec.rb │ ├── classes │ │ ├── zaqar_db_mysql_spec.rb │ │ ├── zaqar_db_postgresql_spec.rb │ │ ├── zaqar_init_spec.rb │ │ ├── zaqar_keystone_auth_spec.rb │ │ ├── zaqar_logging_spec.rb │ │ ├── zaqar_management_mongodb_spec.rb │ │ ├── zaqar_messaging_mongodb_spec.rb │ │ ├── zaqar_policy_spec.rb │ │ ├── zaqar_server_spec.rb │ │ ├── zaqar_transport_websocket_spec.rb │ │ └── zaqar_transport_wsgi_spec.rb │ ├── defines │ │ └── zaqar_server_instance_spec.rb │ ├── shared_examples.rb │ ├── spec_helper.rb │ ├── spec_helper_acceptance.rb │ └── unit │ │ ├── provider │ │ └── zaqar_config │ │ │ └── ini_setting_spec.rb │ │ └── type │ │ └── zaqar_config_spec.rb ├── templates │ └── zaqar.conf.erb ├── test-requirements.txt ├── tests │ └── init.pp └── tox.ini └── zookeeper ├── .fixtures.yml ├── .gitignore ├── .puppet-lint.rc ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── Puppetfile ├── Puppetfile.lock ├── README.md ├── Rakefile ├── manifests ├── config.pp ├── host.pp ├── init.pp ├── install.pp ├── os │ ├── debian.pp │ └── redhat.pp ├── repo.pp └── service.pp ├── metadata.json ├── spec ├── acceptance │ ├── nodesets │ │ ├── default.yml │ │ └── ubuntu1240.yml │ └── zookeeper_spec.rb ├── classes │ ├── config_spec.rb │ ├── debian_spec.rb │ ├── init_spec.rb │ ├── redhat_spec.rb │ ├── repo_spec.rb │ └── service_spec.rb ├── defines │ └── host_spec.rb ├── fixtures │ └── hiera │ │ └── hiera.yaml ├── spec_helper.rb ├── spec_helper_acceptance.rb └── spec_helper_system.rb └── templates ├── conf ├── environment.erb ├── log4j.properties.erb ├── myid.erb ├── quorum.conf.erb └── zoo.cfg.erb └── zookeeper.service.erb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/.gitreview -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/Gemfile -------------------------------------------------------------------------------- /Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/Puppetfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/Rakefile -------------------------------------------------------------------------------- /aodh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/.gitignore -------------------------------------------------------------------------------- /aodh/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/.gitreview -------------------------------------------------------------------------------- /aodh/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/CHANGELOG.md -------------------------------------------------------------------------------- /aodh/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/Gemfile -------------------------------------------------------------------------------- /aodh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/LICENSE -------------------------------------------------------------------------------- /aodh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/README.md -------------------------------------------------------------------------------- /aodh/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /aodh/examples/aodh.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/examples/aodh.pp -------------------------------------------------------------------------------- /aodh/manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/manifests/api.pp -------------------------------------------------------------------------------- /aodh/manifests/auth.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/manifests/auth.pp -------------------------------------------------------------------------------- /aodh/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/manifests/db.pp -------------------------------------------------------------------------------- /aodh/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/manifests/init.pp -------------------------------------------------------------------------------- /aodh/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/metadata.json -------------------------------------------------------------------------------- /aodh/releasenotes/notes/gnocchi-1aff76df364ba03a.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement gnocchi_url parameter. 4 | -------------------------------------------------------------------------------- /aodh/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/setup.cfg -------------------------------------------------------------------------------- /aodh/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/setup.py -------------------------------------------------------------------------------- /aodh/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/tests/init.pp -------------------------------------------------------------------------------- /aodh/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/aodh/tox.ini -------------------------------------------------------------------------------- /apache/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/.fixtures.yml -------------------------------------------------------------------------------- /apache/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/.gitattributes -------------------------------------------------------------------------------- /apache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/.gitignore -------------------------------------------------------------------------------- /apache/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/.nodeset.yml -------------------------------------------------------------------------------- /apache/.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/.puppet-lint.rc -------------------------------------------------------------------------------- /apache/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /apache/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/.sync.yml -------------------------------------------------------------------------------- /apache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/.travis.yml -------------------------------------------------------------------------------- /apache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/CHANGELOG.md -------------------------------------------------------------------------------- /apache/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/CONTRIBUTING.md -------------------------------------------------------------------------------- /apache/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/Gemfile -------------------------------------------------------------------------------- /apache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/LICENSE -------------------------------------------------------------------------------- /apache/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/NOTICE -------------------------------------------------------------------------------- /apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/README.md -------------------------------------------------------------------------------- /apache/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/Rakefile -------------------------------------------------------------------------------- /apache/examples/dev.pp: -------------------------------------------------------------------------------- 1 | include apache::mod::dev 2 | -------------------------------------------------------------------------------- /apache/examples/init.pp: -------------------------------------------------------------------------------- 1 | include apache 2 | -------------------------------------------------------------------------------- /apache/examples/mods.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/examples/mods.pp -------------------------------------------------------------------------------- /apache/examples/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/examples/php.pp -------------------------------------------------------------------------------- /apache/files/httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/files/httpd -------------------------------------------------------------------------------- /apache/manifests/dev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/manifests/dev.pp -------------------------------------------------------------------------------- /apache/manifests/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/manifests/mod.pp -------------------------------------------------------------------------------- /apache/manifests/mpm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/manifests/mpm.pp -------------------------------------------------------------------------------- /apache/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/manifests/php.pp -------------------------------------------------------------------------------- /apache/manifests/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/manifests/ssl.pp -------------------------------------------------------------------------------- /apache/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/metadata.json -------------------------------------------------------------------------------- /apache/spec/fixtures/files/spec: -------------------------------------------------------------------------------- 1 | # This is a file only for spec testing 2 | -------------------------------------------------------------------------------- /apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb: -------------------------------------------------------------------------------- 1 | Fake template for rspec. 2 | -------------------------------------------------------------------------------- /apache/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/apache/spec/spec.opts -------------------------------------------------------------------------------- /apache/templates/mod/cgid.conf.erb: -------------------------------------------------------------------------------- 1 | ScriptSock "<%= @cgisock_path %>" 2 | -------------------------------------------------------------------------------- /apache/templates/mod/dav_fs.conf.erb: -------------------------------------------------------------------------------- 1 | DAVLockDB "<%= @dav_lock %>" 2 | -------------------------------------------------------------------------------- /apache/templates/vhost/_file_footer.erb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apache/templates/vhost/_serversignature.erb: -------------------------------------------------------------------------------- 1 | ServerSignature Off 2 | -------------------------------------------------------------------------------- /cassandra/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/.fixtures.yml -------------------------------------------------------------------------------- /cassandra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/.gitignore -------------------------------------------------------------------------------- /cassandra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/.travis.yml -------------------------------------------------------------------------------- /cassandra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/CHANGELOG.md -------------------------------------------------------------------------------- /cassandra/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/Gemfile -------------------------------------------------------------------------------- /cassandra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/LICENSE -------------------------------------------------------------------------------- /cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/README.md -------------------------------------------------------------------------------- /cassandra/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/Rakefile -------------------------------------------------------------------------------- /cassandra/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/index.html -------------------------------------------------------------------------------- /cassandra/javascripts/main.js: -------------------------------------------------------------------------------- 1 | console.log('This would be the main JS file.'); 2 | -------------------------------------------------------------------------------- /cassandra/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/metadata.json -------------------------------------------------------------------------------- /cassandra/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cassandra/params.json -------------------------------------------------------------------------------- /ceilometer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/.gitignore -------------------------------------------------------------------------------- /ceilometer/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/.gitreview -------------------------------------------------------------------------------- /ceilometer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/.travis.yml -------------------------------------------------------------------------------- /ceilometer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/CHANGELOG.md -------------------------------------------------------------------------------- /ceilometer/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/Gemfile -------------------------------------------------------------------------------- /ceilometer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/LICENSE -------------------------------------------------------------------------------- /ceilometer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/README.md -------------------------------------------------------------------------------- /ceilometer/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /ceilometer/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ceilometer/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/setup.cfg -------------------------------------------------------------------------------- /ceilometer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/setup.py -------------------------------------------------------------------------------- /ceilometer/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceilometer/tox.ini -------------------------------------------------------------------------------- /ceph/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/.fixtures.yml -------------------------------------------------------------------------------- /ceph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/.gitignore -------------------------------------------------------------------------------- /ceph/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/.gitreview -------------------------------------------------------------------------------- /ceph/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/.nodeset.yml -------------------------------------------------------------------------------- /ceph/.prefabs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/.prefabs.yml -------------------------------------------------------------------------------- /ceph/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/Gemfile -------------------------------------------------------------------------------- /ceph/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/LICENSE -------------------------------------------------------------------------------- /ceph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/README.md -------------------------------------------------------------------------------- /ceph/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/Rakefile -------------------------------------------------------------------------------- /ceph/USECASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/USECASES.md -------------------------------------------------------------------------------- /ceph/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/conf.pp -------------------------------------------------------------------------------- /ceph/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/init.pp -------------------------------------------------------------------------------- /ceph/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/key.pp -------------------------------------------------------------------------------- /ceph/manifests/keys.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/keys.pp -------------------------------------------------------------------------------- /ceph/manifests/mds.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/mds.pp -------------------------------------------------------------------------------- /ceph/manifests/mon.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/mon.pp -------------------------------------------------------------------------------- /ceph/manifests/mons.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/mons.pp -------------------------------------------------------------------------------- /ceph/manifests/osd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/osd.pp -------------------------------------------------------------------------------- /ceph/manifests/osds.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/osds.pp -------------------------------------------------------------------------------- /ceph/manifests/pool.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/pool.pp -------------------------------------------------------------------------------- /ceph/manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/repo.pp -------------------------------------------------------------------------------- /ceph/manifests/rgw.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/manifests/rgw.pp -------------------------------------------------------------------------------- /ceph/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/metadata.json -------------------------------------------------------------------------------- /ceph/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ceph/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/setup.cfg -------------------------------------------------------------------------------- /ceph/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/setup.py -------------------------------------------------------------------------------- /ceph/spec/classes/ceph_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ceph/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ceph/tox.ini -------------------------------------------------------------------------------- /certmonger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/certmonger/LICENSE -------------------------------------------------------------------------------- /certmonger/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/certmonger/Modulefile -------------------------------------------------------------------------------- /certmonger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/certmonger/README.md -------------------------------------------------------------------------------- /cinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/.gitignore -------------------------------------------------------------------------------- /cinder/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/.gitreview -------------------------------------------------------------------------------- /cinder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/CHANGELOG.md -------------------------------------------------------------------------------- /cinder/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/Gemfile -------------------------------------------------------------------------------- /cinder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/LICENSE -------------------------------------------------------------------------------- /cinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/README.md -------------------------------------------------------------------------------- /cinder/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /cinder/manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/manifests/api.pp -------------------------------------------------------------------------------- /cinder/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/manifests/db.pp -------------------------------------------------------------------------------- /cinder/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/metadata.json -------------------------------------------------------------------------------- /cinder/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cinder/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/setup.cfg -------------------------------------------------------------------------------- /cinder/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/setup.py -------------------------------------------------------------------------------- /cinder/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/cinder/tox.ini -------------------------------------------------------------------------------- /concat/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/.fixtures.yml -------------------------------------------------------------------------------- /concat/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /concat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/.gitignore -------------------------------------------------------------------------------- /concat/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/.sync.yml -------------------------------------------------------------------------------- /concat/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/.travis.yml -------------------------------------------------------------------------------- /concat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/CHANGELOG.md -------------------------------------------------------------------------------- /concat/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/CONTRIBUTING.md -------------------------------------------------------------------------------- /concat/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/Gemfile -------------------------------------------------------------------------------- /concat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/LICENSE -------------------------------------------------------------------------------- /concat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/README.md -------------------------------------------------------------------------------- /concat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/Rakefile -------------------------------------------------------------------------------- /concat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/metadata.json -------------------------------------------------------------------------------- /concat/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/spec/spec.opts -------------------------------------------------------------------------------- /concat/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/concat/tests/init.pp -------------------------------------------------------------------------------- /contrail/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/.fixtures.yml -------------------------------------------------------------------------------- /contrail/.forgeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/.forgeignore -------------------------------------------------------------------------------- /contrail/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/.gitignore -------------------------------------------------------------------------------- /contrail/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/.travis.yml -------------------------------------------------------------------------------- /contrail/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/CHANGELOG.md -------------------------------------------------------------------------------- /contrail/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/Gemfile -------------------------------------------------------------------------------- /contrail/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/LICENSE -------------------------------------------------------------------------------- /contrail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/README.md -------------------------------------------------------------------------------- /contrail/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/Rakefile -------------------------------------------------------------------------------- /contrail/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/contrail/metadata.json -------------------------------------------------------------------------------- /contrail/spec/classes/skel_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | -------------------------------------------------------------------------------- /contrail/tests/init.pp: -------------------------------------------------------------------------------- 1 | include contrail 2 | -------------------------------------------------------------------------------- /corosync/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/.fixtures.yml -------------------------------------------------------------------------------- /corosync/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | spec/fixtures 3 | .bundle 4 | pkg 5 | -------------------------------------------------------------------------------- /corosync/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/.travis.yml -------------------------------------------------------------------------------- /corosync/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/CHANGELOG.md -------------------------------------------------------------------------------- /corosync/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/Gemfile -------------------------------------------------------------------------------- /corosync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/LICENSE -------------------------------------------------------------------------------- /corosync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/README.md -------------------------------------------------------------------------------- /corosync/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/Rakefile -------------------------------------------------------------------------------- /corosync/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/metadata.json -------------------------------------------------------------------------------- /corosync/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/spec/spec.opts -------------------------------------------------------------------------------- /corosync/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/corosync/tests/init.pp -------------------------------------------------------------------------------- /datacat/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/.fixtures.yml -------------------------------------------------------------------------------- /datacat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/.gitignore -------------------------------------------------------------------------------- /datacat/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/.nodeset.yml -------------------------------------------------------------------------------- /datacat/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --backtrace 3 | -------------------------------------------------------------------------------- /datacat/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/.travis.yml -------------------------------------------------------------------------------- /datacat/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/Changes -------------------------------------------------------------------------------- /datacat/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/Gemfile -------------------------------------------------------------------------------- /datacat/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/NOTES.md -------------------------------------------------------------------------------- /datacat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/README.md -------------------------------------------------------------------------------- /datacat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/Rakefile -------------------------------------------------------------------------------- /datacat/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/TODO.md -------------------------------------------------------------------------------- /datacat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/datacat/metadata.json -------------------------------------------------------------------------------- /datacat/spec/fixtures/modules/template_body/templates/test1.erb: -------------------------------------------------------------------------------- 1 | Goodbye cruel world 2 | -------------------------------------------------------------------------------- /elasticsearch/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/elasticsearch/Gemfile -------------------------------------------------------------------------------- /elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/elasticsearch/LICENSE -------------------------------------------------------------------------------- /elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/elasticsearch/README.md -------------------------------------------------------------------------------- /elasticsearch/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/elasticsearch/Rakefile -------------------------------------------------------------------------------- /elasticsearch/spec/classes/099_coverage_spec.rb: -------------------------------------------------------------------------------- 1 | at_exit { RSpec::Puppet::Coverage.report! } 2 | -------------------------------------------------------------------------------- /firewall/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/.fixtures.yml -------------------------------------------------------------------------------- /firewall/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/.gitignore -------------------------------------------------------------------------------- /firewall/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/.nodeset.yml -------------------------------------------------------------------------------- /firewall/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/.sync.yml -------------------------------------------------------------------------------- /firewall/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/.travis.yml -------------------------------------------------------------------------------- /firewall/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/CHANGELOG.md -------------------------------------------------------------------------------- /firewall/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/Gemfile -------------------------------------------------------------------------------- /firewall/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/LICENSE -------------------------------------------------------------------------------- /firewall/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/Rakefile -------------------------------------------------------------------------------- /firewall/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/metadata.json -------------------------------------------------------------------------------- /firewall/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/firewall/spec/spec.opts -------------------------------------------------------------------------------- /fluentd/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/.fixtures.yml -------------------------------------------------------------------------------- /fluentd/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | Gemfile.lock 3 | log/ 4 | pkg/ 5 | spec/fixtures/ 6 | -------------------------------------------------------------------------------- /fluentd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/.travis.yml -------------------------------------------------------------------------------- /fluentd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/CHANGELOG.md -------------------------------------------------------------------------------- /fluentd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/Gemfile -------------------------------------------------------------------------------- /fluentd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/LICENSE -------------------------------------------------------------------------------- /fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/README.md -------------------------------------------------------------------------------- /fluentd/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/Rakefile -------------------------------------------------------------------------------- /fluentd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/fluentd/metadata.json -------------------------------------------------------------------------------- /git/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/.fixtures.yml -------------------------------------------------------------------------------- /git/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/.gitignore -------------------------------------------------------------------------------- /git/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/.travis.yml -------------------------------------------------------------------------------- /git/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/CHANGELOG.md -------------------------------------------------------------------------------- /git/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/Gemfile -------------------------------------------------------------------------------- /git/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/LICENSE -------------------------------------------------------------------------------- /git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/README.md -------------------------------------------------------------------------------- /git/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /git/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/manifests/config.pp -------------------------------------------------------------------------------- /git/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/manifests/init.pp -------------------------------------------------------------------------------- /git/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/metadata.json -------------------------------------------------------------------------------- /git/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/git/spec/spec_helper.rb -------------------------------------------------------------------------------- /git/tests/gitosis.pp: -------------------------------------------------------------------------------- 1 | class { 'git::gitosis': } 2 | -------------------------------------------------------------------------------- /git/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'git': } 2 | -------------------------------------------------------------------------------- /glance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/.gitignore -------------------------------------------------------------------------------- /glance/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/.gitreview -------------------------------------------------------------------------------- /glance/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/CHANGELOG.md -------------------------------------------------------------------------------- /glance/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/Gemfile -------------------------------------------------------------------------------- /glance/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/LICENSE -------------------------------------------------------------------------------- /glance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/README.md -------------------------------------------------------------------------------- /glance/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /glance/ext/glance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/ext/glance.rb -------------------------------------------------------------------------------- /glance/ext/glance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/ext/glance.sh -------------------------------------------------------------------------------- /glance/manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/manifests/api.pp -------------------------------------------------------------------------------- /glance/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/metadata.json -------------------------------------------------------------------------------- /glance/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glance/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/setup.cfg -------------------------------------------------------------------------------- /glance/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/setup.py -------------------------------------------------------------------------------- /glance/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/spec/spec.opts -------------------------------------------------------------------------------- /glance/tests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/tests/api.pp -------------------------------------------------------------------------------- /glance/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { '::glance': } 2 | -------------------------------------------------------------------------------- /glance/tests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/tests/site.pp -------------------------------------------------------------------------------- /glance/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/glance/tox.ini -------------------------------------------------------------------------------- /gnocchi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/.gitignore -------------------------------------------------------------------------------- /gnocchi/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/.gitreview -------------------------------------------------------------------------------- /gnocchi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/CHANGELOG.md -------------------------------------------------------------------------------- /gnocchi/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/Gemfile -------------------------------------------------------------------------------- /gnocchi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/LICENSE -------------------------------------------------------------------------------- /gnocchi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/README.md -------------------------------------------------------------------------------- /gnocchi/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /gnocchi/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/manifests/db.pp -------------------------------------------------------------------------------- /gnocchi/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/metadata.json -------------------------------------------------------------------------------- /gnocchi/releasenotes/notes/api_paste-b94e191896840944.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add api_paste type/provider. 4 | -------------------------------------------------------------------------------- /gnocchi/releasenotes/notes/client-04f70664e363425c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement ::gnocchi::client. 4 | -------------------------------------------------------------------------------- /gnocchi/releasenotes/notes/influxdb-889413086f27c7e4.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add Influxdb as a backend storage. 4 | -------------------------------------------------------------------------------- /gnocchi/releasenotes/notes/metricd-dd917b15aa827654.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add metricd service support. 4 | -------------------------------------------------------------------------------- /gnocchi/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnocchi/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/setup.cfg -------------------------------------------------------------------------------- /gnocchi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/setup.py -------------------------------------------------------------------------------- /gnocchi/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/gnocchi/tox.ini -------------------------------------------------------------------------------- /haproxy/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/.fixtures.yml -------------------------------------------------------------------------------- /haproxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/.gitignore -------------------------------------------------------------------------------- /haproxy/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/.nodeset.yml -------------------------------------------------------------------------------- /haproxy/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/.sync.yml -------------------------------------------------------------------------------- /haproxy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/.travis.yml -------------------------------------------------------------------------------- /haproxy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/CHANGELOG.md -------------------------------------------------------------------------------- /haproxy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/CONTRIBUTING.md -------------------------------------------------------------------------------- /haproxy/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/Gemfile -------------------------------------------------------------------------------- /haproxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/LICENSE -------------------------------------------------------------------------------- /haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/README.md -------------------------------------------------------------------------------- /haproxy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/Rakefile -------------------------------------------------------------------------------- /haproxy/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/metadata.json -------------------------------------------------------------------------------- /haproxy/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/haproxy/spec/spec.opts -------------------------------------------------------------------------------- /haproxy/templates/empty.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /haproxy/templates/haproxy_peers_block.erb: -------------------------------------------------------------------------------- 1 | 2 | peers <%= @name %> 3 | -------------------------------------------------------------------------------- /heat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/.gitignore -------------------------------------------------------------------------------- /heat/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/.gitreview -------------------------------------------------------------------------------- /heat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/CHANGELOG.md -------------------------------------------------------------------------------- /heat/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/Gemfile -------------------------------------------------------------------------------- /heat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/LICENSE -------------------------------------------------------------------------------- /heat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/README.md -------------------------------------------------------------------------------- /heat/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /heat/examples/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/examples/site.pp -------------------------------------------------------------------------------- /heat/manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/manifests/api.pp -------------------------------------------------------------------------------- /heat/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/manifests/db.pp -------------------------------------------------------------------------------- /heat/manifests/deps.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/manifests/deps.pp -------------------------------------------------------------------------------- /heat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/manifests/init.pp -------------------------------------------------------------------------------- /heat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/metadata.json -------------------------------------------------------------------------------- /heat/releasenotes/notes/api_paste-b94e191896840944.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add api_paste type/provider. 4 | -------------------------------------------------------------------------------- /heat/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /heat/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/setup.cfg -------------------------------------------------------------------------------- /heat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/setup.py -------------------------------------------------------------------------------- /heat/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/heat/tox.ini -------------------------------------------------------------------------------- /horizon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/.gitignore -------------------------------------------------------------------------------- /horizon/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/.gitreview -------------------------------------------------------------------------------- /horizon/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/.sync.yml -------------------------------------------------------------------------------- /horizon/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/CHANGELOG.md -------------------------------------------------------------------------------- /horizon/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/Gemfile -------------------------------------------------------------------------------- /horizon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/LICENSE -------------------------------------------------------------------------------- /horizon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/README.md -------------------------------------------------------------------------------- /horizon/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /horizon/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/metadata.json -------------------------------------------------------------------------------- /horizon/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizon/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/setup.cfg -------------------------------------------------------------------------------- /horizon/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/setup.py -------------------------------------------------------------------------------- /horizon/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/horizon/tox.ini -------------------------------------------------------------------------------- /inifile/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/.fixtures.yml -------------------------------------------------------------------------------- /inifile/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/.gitattributes -------------------------------------------------------------------------------- /inifile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/.gitignore -------------------------------------------------------------------------------- /inifile/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /inifile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/.travis.yml -------------------------------------------------------------------------------- /inifile/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/CHANGELOG.md -------------------------------------------------------------------------------- /inifile/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/CONTRIBUTING.md -------------------------------------------------------------------------------- /inifile/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/Gemfile -------------------------------------------------------------------------------- /inifile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/LICENSE -------------------------------------------------------------------------------- /inifile/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/NOTICE -------------------------------------------------------------------------------- /inifile/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/README.markdown -------------------------------------------------------------------------------- /inifile/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/Rakefile -------------------------------------------------------------------------------- /inifile/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/metadata.json -------------------------------------------------------------------------------- /inifile/spec/fixtures/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inifile/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/inifile/spec/spec.opts -------------------------------------------------------------------------------- /ironic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/.gitignore -------------------------------------------------------------------------------- /ironic/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/.gitreview -------------------------------------------------------------------------------- /ironic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/CHANGELOG.md -------------------------------------------------------------------------------- /ironic/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/Gemfile -------------------------------------------------------------------------------- /ironic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/LICENSE -------------------------------------------------------------------------------- /ironic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/README.md -------------------------------------------------------------------------------- /ironic/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /ironic/manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/manifests/api.pp -------------------------------------------------------------------------------- /ironic/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/manifests/db.pp -------------------------------------------------------------------------------- /ironic/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/metadata.json -------------------------------------------------------------------------------- /ironic/releasenotes/notes/api_paste-b94e191896840944.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add api_paste type/provider. 4 | -------------------------------------------------------------------------------- /ironic/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/setup.cfg -------------------------------------------------------------------------------- /ironic/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/setup.py -------------------------------------------------------------------------------- /ironic/templates/baremetal.json.erb: -------------------------------------------------------------------------------- 1 | { 2 | <%= @baremetal_json_hosts %> 3 | } 4 | -------------------------------------------------------------------------------- /ironic/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ironic/tox.ini -------------------------------------------------------------------------------- /java/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/.fixtures.yml -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/.gitignore -------------------------------------------------------------------------------- /java/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/.sync.yml -------------------------------------------------------------------------------- /java/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/.travis.yml -------------------------------------------------------------------------------- /java/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/CHANGELOG.md -------------------------------------------------------------------------------- /java/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/CONTRIBUTING.md -------------------------------------------------------------------------------- /java/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/Gemfile -------------------------------------------------------------------------------- /java/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/LICENSE -------------------------------------------------------------------------------- /java/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/README.markdown -------------------------------------------------------------------------------- /java/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/Rakefile -------------------------------------------------------------------------------- /java/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/manifests/init.pp -------------------------------------------------------------------------------- /java/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/metadata.json -------------------------------------------------------------------------------- /java/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/spec/spec.opts -------------------------------------------------------------------------------- /java/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/java/tests/init.pp -------------------------------------------------------------------------------- /kafka/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/.fixtures.yml -------------------------------------------------------------------------------- /kafka/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/.gitignore -------------------------------------------------------------------------------- /kafka/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color -------------------------------------------------------------------------------- /kafka/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/.sync.yml -------------------------------------------------------------------------------- /kafka/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/.travis.yml -------------------------------------------------------------------------------- /kafka/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/CHANGELOG.md -------------------------------------------------------------------------------- /kafka/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/CONTRIBUTING.md -------------------------------------------------------------------------------- /kafka/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/Gemfile -------------------------------------------------------------------------------- /kafka/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/Guardfile -------------------------------------------------------------------------------- /kafka/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/LICENSE -------------------------------------------------------------------------------- /kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/README.md -------------------------------------------------------------------------------- /kafka/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/Rakefile -------------------------------------------------------------------------------- /kafka/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/manifests/init.pp -------------------------------------------------------------------------------- /kafka/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/metadata.json -------------------------------------------------------------------------------- /kafka/spec/classes/coverage_spec.rb: -------------------------------------------------------------------------------- 1 | at_exit { RSpec::Puppet::Coverage.report! } 2 | -------------------------------------------------------------------------------- /kafka/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kafka/spec/spec.opts -------------------------------------------------------------------------------- /keepalived/.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | *~ 3 | -------------------------------------------------------------------------------- /keepalived/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keepalived/Gemfile -------------------------------------------------------------------------------- /keepalived/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keepalived/LICENSE -------------------------------------------------------------------------------- /keepalived/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keepalived/Modulefile -------------------------------------------------------------------------------- /keepalived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keepalived/README.md -------------------------------------------------------------------------------- /keepalived/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keepalived/Rakefile -------------------------------------------------------------------------------- /keystone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/.gitignore -------------------------------------------------------------------------------- /keystone/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/.gitreview -------------------------------------------------------------------------------- /keystone/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/.sync.yml -------------------------------------------------------------------------------- /keystone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/CHANGELOG.md -------------------------------------------------------------------------------- /keystone/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/Gemfile -------------------------------------------------------------------------------- /keystone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/LICENSE -------------------------------------------------------------------------------- /keystone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/README.md -------------------------------------------------------------------------------- /keystone/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /keystone/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/metadata.json -------------------------------------------------------------------------------- /keystone/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keystone/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/setup.cfg -------------------------------------------------------------------------------- /keystone/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/setup.py -------------------------------------------------------------------------------- /keystone/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/spec/spec.opts -------------------------------------------------------------------------------- /keystone/tests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/tests/site.pp -------------------------------------------------------------------------------- /keystone/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/keystone/tox.ini -------------------------------------------------------------------------------- /kibana3/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/.fixtures.yml -------------------------------------------------------------------------------- /kibana3/.gitignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | pkg 3 | .vagrant 4 | .rspec_system 5 | .*.sw? 6 | .bundle 7 | Gemfile.lock 8 | -------------------------------------------------------------------------------- /kibana3/.ruby-gemset: -------------------------------------------------------------------------------- 1 | kibana3 2 | -------------------------------------------------------------------------------- /kibana3/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.1.1 2 | -------------------------------------------------------------------------------- /kibana3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/.travis.yml -------------------------------------------------------------------------------- /kibana3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/CHANGELOG.md -------------------------------------------------------------------------------- /kibana3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/Gemfile -------------------------------------------------------------------------------- /kibana3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/LICENSE -------------------------------------------------------------------------------- /kibana3/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/Modulefile -------------------------------------------------------------------------------- /kibana3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/README.md -------------------------------------------------------------------------------- /kibana3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/Rakefile -------------------------------------------------------------------------------- /kibana3/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/metadata.json -------------------------------------------------------------------------------- /kibana3/spec/classes/coverage_spec.rb: -------------------------------------------------------------------------------- 1 | at_exit { RSpec::Puppet::Coverage.report! } 2 | -------------------------------------------------------------------------------- /kibana3/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kibana3/tests/init.pp -------------------------------------------------------------------------------- /kmod/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/.fixtures.yml -------------------------------------------------------------------------------- /kmod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/.gitignore -------------------------------------------------------------------------------- /kmod/.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/.puppet-lint.rc -------------------------------------------------------------------------------- /kmod/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/.sync.yml -------------------------------------------------------------------------------- /kmod/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/.travis.yml -------------------------------------------------------------------------------- /kmod/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/CHANGELOG.md -------------------------------------------------------------------------------- /kmod/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/Gemfile -------------------------------------------------------------------------------- /kmod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/LICENSE -------------------------------------------------------------------------------- /kmod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/README.md -------------------------------------------------------------------------------- /kmod/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/Rakefile -------------------------------------------------------------------------------- /kmod/manifests/alias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/manifests/alias.pp -------------------------------------------------------------------------------- /kmod/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/manifests/init.pp -------------------------------------------------------------------------------- /kmod/manifests/load.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/manifests/load.pp -------------------------------------------------------------------------------- /kmod/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/metadata.json -------------------------------------------------------------------------------- /kmod/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/kmod/spec/spec.opts -------------------------------------------------------------------------------- /manila/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/.gitignore -------------------------------------------------------------------------------- /manila/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/.gitreview -------------------------------------------------------------------------------- /manila/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/CHANGELOG.md -------------------------------------------------------------------------------- /manila/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/Gemfile -------------------------------------------------------------------------------- /manila/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/LICENSE -------------------------------------------------------------------------------- /manila/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/README.md -------------------------------------------------------------------------------- /manila/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /manila/manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/manifests/api.pp -------------------------------------------------------------------------------- /manila/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/manifests/db.pp -------------------------------------------------------------------------------- /manila/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/metadata.json -------------------------------------------------------------------------------- /manila/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manila/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/setup.cfg -------------------------------------------------------------------------------- /manila/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/setup.py -------------------------------------------------------------------------------- /manila/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/manila/tox.ini -------------------------------------------------------------------------------- /memcached/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/memcached/.fixtures.yml -------------------------------------------------------------------------------- /memcached/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | *.swp 3 | .forge-releng/ 4 | Gemfile.lock 5 | vendor/ 6 | -------------------------------------------------------------------------------- /memcached/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/memcached/.travis.yml -------------------------------------------------------------------------------- /memcached/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/memcached/Gemfile -------------------------------------------------------------------------------- /memcached/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/memcached/LICENSE -------------------------------------------------------------------------------- /memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/memcached/README.md -------------------------------------------------------------------------------- /memcached/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/memcached/Rakefile -------------------------------------------------------------------------------- /memcached/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/memcached/metadata.json -------------------------------------------------------------------------------- /memcached/tests/init.pp: -------------------------------------------------------------------------------- 1 | include memcached 2 | -------------------------------------------------------------------------------- /midonet/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/.fixtures.yml -------------------------------------------------------------------------------- /midonet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/.gitignore -------------------------------------------------------------------------------- /midonet/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/.gitreview -------------------------------------------------------------------------------- /midonet/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/CONTRIBUTING.md -------------------------------------------------------------------------------- /midonet/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/Gemfile -------------------------------------------------------------------------------- /midonet/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/Puppetfile -------------------------------------------------------------------------------- /midonet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/README.md -------------------------------------------------------------------------------- /midonet/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/Rakefile -------------------------------------------------------------------------------- /midonet/data/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/data/hiera.yaml -------------------------------------------------------------------------------- /midonet/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/metadata.json -------------------------------------------------------------------------------- /midonet/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/midonet/spec/spec.opts -------------------------------------------------------------------------------- /mistral/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/.gitignore -------------------------------------------------------------------------------- /mistral/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/.gitreview -------------------------------------------------------------------------------- /mistral/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/CHANGELOG.md -------------------------------------------------------------------------------- /mistral/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/Gemfile -------------------------------------------------------------------------------- /mistral/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/LICENSE -------------------------------------------------------------------------------- /mistral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/README.md -------------------------------------------------------------------------------- /mistral/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /mistral/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/manifests/db.pp -------------------------------------------------------------------------------- /mistral/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/metadata.json -------------------------------------------------------------------------------- /mistral/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mistral/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/setup.cfg -------------------------------------------------------------------------------- /mistral/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/setup.py -------------------------------------------------------------------------------- /mistral/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/tests/init.pp -------------------------------------------------------------------------------- /mistral/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mistral/tox.ini -------------------------------------------------------------------------------- /module-collectd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/module-collectd/Gemfile -------------------------------------------------------------------------------- /module-collectd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/module-collectd/LICENSE -------------------------------------------------------------------------------- /module-collectd/files/tests/Foo.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module-collectd/templates/plugin/perl.conf.erb: -------------------------------------------------------------------------------- 1 | Include "<%= @conf_dir %>/perl/*.conf" 2 | 3 | -------------------------------------------------------------------------------- /module-collectd/tests/init.pp: -------------------------------------------------------------------------------- 1 | include collectd 2 | -------------------------------------------------------------------------------- /module-data/.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | -------------------------------------------------------------------------------- /module-data/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/module-data/Modulefile -------------------------------------------------------------------------------- /module-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/module-data/README.md -------------------------------------------------------------------------------- /mongodb/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/.fixtures.yml -------------------------------------------------------------------------------- /mongodb/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/.gitattributes -------------------------------------------------------------------------------- /mongodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/.gitignore -------------------------------------------------------------------------------- /mongodb/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/.nodeset.yml -------------------------------------------------------------------------------- /mongodb/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /mongodb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/.travis.yml -------------------------------------------------------------------------------- /mongodb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/CHANGELOG.md -------------------------------------------------------------------------------- /mongodb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/CONTRIBUTING.md -------------------------------------------------------------------------------- /mongodb/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/Gemfile -------------------------------------------------------------------------------- /mongodb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/LICENSE -------------------------------------------------------------------------------- /mongodb/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/NOTICE -------------------------------------------------------------------------------- /mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/README.md -------------------------------------------------------------------------------- /mongodb/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/Rakefile -------------------------------------------------------------------------------- /mongodb/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/manifests/db.pp -------------------------------------------------------------------------------- /mongodb/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/metadata.json -------------------------------------------------------------------------------- /mongodb/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/spec/spec.opts -------------------------------------------------------------------------------- /mongodb/tests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/tests/client.pp -------------------------------------------------------------------------------- /mongodb/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { '::mongodb': } 2 | -------------------------------------------------------------------------------- /mongodb/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mongodb/tests/server.pp -------------------------------------------------------------------------------- /mysql/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/.fixtures.yml -------------------------------------------------------------------------------- /mysql/.geppetto-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/.geppetto-rc.json -------------------------------------------------------------------------------- /mysql/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/.gitattributes -------------------------------------------------------------------------------- /mysql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/.gitignore -------------------------------------------------------------------------------- /mysql/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/.nodeset.yml -------------------------------------------------------------------------------- /mysql/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /mysql/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/.sync.yml -------------------------------------------------------------------------------- /mysql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/.travis.yml -------------------------------------------------------------------------------- /mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/CHANGELOG.md -------------------------------------------------------------------------------- /mysql/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/CONTRIBUTING.md -------------------------------------------------------------------------------- /mysql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/Gemfile -------------------------------------------------------------------------------- /mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/LICENSE -------------------------------------------------------------------------------- /mysql/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/NOTICE -------------------------------------------------------------------------------- /mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/README.md -------------------------------------------------------------------------------- /mysql/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/Rakefile -------------------------------------------------------------------------------- /mysql/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/TODO -------------------------------------------------------------------------------- /mysql/examples/bindings.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::bindings': 2 | php_enable => true, 3 | } 4 | -------------------------------------------------------------------------------- /mysql/examples/java.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::java':} 2 | -------------------------------------------------------------------------------- /mysql/examples/perl.pp: -------------------------------------------------------------------------------- 1 | include mysql::bindings::perl 2 | -------------------------------------------------------------------------------- /mysql/examples/python.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::bindings::python':} 2 | -------------------------------------------------------------------------------- /mysql/examples/ruby.pp: -------------------------------------------------------------------------------- 1 | include mysql::bindings::ruby 2 | -------------------------------------------------------------------------------- /mysql/examples/server/config.pp: -------------------------------------------------------------------------------- 1 | mysql::server::config { 'testfile': 2 | 3 | } 4 | -------------------------------------------------------------------------------- /mysql/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/manifests/db.pp -------------------------------------------------------------------------------- /mysql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/metadata.json -------------------------------------------------------------------------------- /mysql/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/mysql/spec/spec.opts -------------------------------------------------------------------------------- /n1k_vsm/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/.fixtures.yml -------------------------------------------------------------------------------- /n1k_vsm/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | spec/fixtures/modules/* 3 | pkg 4 | Gemfile.lock 5 | -------------------------------------------------------------------------------- /n1k_vsm/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/.gitreview -------------------------------------------------------------------------------- /n1k_vsm/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/Gemfile -------------------------------------------------------------------------------- /n1k_vsm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/LICENSE -------------------------------------------------------------------------------- /n1k_vsm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/README.md -------------------------------------------------------------------------------- /n1k_vsm/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/Rakefile -------------------------------------------------------------------------------- /n1k_vsm/files/n1kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/files/n1kv -------------------------------------------------------------------------------- /n1k_vsm/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/n1k_vsm/metadata.json -------------------------------------------------------------------------------- /nagios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nagios/LICENSE -------------------------------------------------------------------------------- /nagios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nagios/README.md -------------------------------------------------------------------------------- /nagios/data/RedHat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nagios/data/RedHat.yaml -------------------------------------------------------------------------------- /nagios/data/hiera.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | :hierarchy: 3 | - "%{::osfamily}" 4 | -------------------------------------------------------------------------------- /neutron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/.gitignore -------------------------------------------------------------------------------- /neutron/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/.gitreview -------------------------------------------------------------------------------- /neutron/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/CHANGELOG.md -------------------------------------------------------------------------------- /neutron/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/Gemfile -------------------------------------------------------------------------------- /neutron/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/LICENSE -------------------------------------------------------------------------------- /neutron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/README.md -------------------------------------------------------------------------------- /neutron/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /neutron/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/manifests/db.pp -------------------------------------------------------------------------------- /neutron/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/metadata.json -------------------------------------------------------------------------------- /neutron/releasenotes/notes/api_paste-b94e191896840944.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add api_paste type/provider. 4 | -------------------------------------------------------------------------------- /neutron/releasenotes/notes/qos-13c0b72fe9a5b502.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add parameters for Neutron QoS support. 4 | -------------------------------------------------------------------------------- /neutron/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neutron/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/setup.cfg -------------------------------------------------------------------------------- /neutron/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/setup.py -------------------------------------------------------------------------------- /neutron/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/neutron/tox.ini -------------------------------------------------------------------------------- /nova/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/.gitignore -------------------------------------------------------------------------------- /nova/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/.gitreview -------------------------------------------------------------------------------- /nova/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/CHANGELOG.md -------------------------------------------------------------------------------- /nova/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/Gemfile -------------------------------------------------------------------------------- /nova/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/LICENSE -------------------------------------------------------------------------------- /nova/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/README.md -------------------------------------------------------------------------------- /nova/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /nova/manifests/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/api.pp -------------------------------------------------------------------------------- /nova/manifests/cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/cache.pp -------------------------------------------------------------------------------- /nova/manifests/cells.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/cells.pp -------------------------------------------------------------------------------- /nova/manifests/cert.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/cert.pp -------------------------------------------------------------------------------- /nova/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/db.pp -------------------------------------------------------------------------------- /nova/manifests/deps.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/deps.pp -------------------------------------------------------------------------------- /nova/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/init.pp -------------------------------------------------------------------------------- /nova/manifests/qpid.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/qpid.pp -------------------------------------------------------------------------------- /nova/manifests/quota.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/manifests/quota.pp -------------------------------------------------------------------------------- /nova/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/metadata.json -------------------------------------------------------------------------------- /nova/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nova/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/setup.cfg -------------------------------------------------------------------------------- /nova/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/setup.py -------------------------------------------------------------------------------- /nova/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nova/tox.ini -------------------------------------------------------------------------------- /nssdb/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/.fixtures.yml -------------------------------------------------------------------------------- /nssdb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/.travis.yml -------------------------------------------------------------------------------- /nssdb/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/CHANGELOG -------------------------------------------------------------------------------- /nssdb/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/Gemfile -------------------------------------------------------------------------------- /nssdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/LICENSE -------------------------------------------------------------------------------- /nssdb/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/Modulefile -------------------------------------------------------------------------------- /nssdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/README.md -------------------------------------------------------------------------------- /nssdb/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/Rakefile -------------------------------------------------------------------------------- /nssdb/tests/create.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/nssdb/tests/create.pp -------------------------------------------------------------------------------- /ntp/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/.fixtures.yml -------------------------------------------------------------------------------- /ntp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/.gitignore -------------------------------------------------------------------------------- /ntp/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/.nodeset.yml -------------------------------------------------------------------------------- /ntp/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/.sync.yml -------------------------------------------------------------------------------- /ntp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/.travis.yml -------------------------------------------------------------------------------- /ntp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/CHANGELOG.md -------------------------------------------------------------------------------- /ntp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/CONTRIBUTING.md -------------------------------------------------------------------------------- /ntp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/Gemfile -------------------------------------------------------------------------------- /ntp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/LICENSE -------------------------------------------------------------------------------- /ntp/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/README.markdown -------------------------------------------------------------------------------- /ntp/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/Rakefile -------------------------------------------------------------------------------- /ntp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/manifests/config.pp -------------------------------------------------------------------------------- /ntp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/manifests/init.pp -------------------------------------------------------------------------------- /ntp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/manifests/params.pp -------------------------------------------------------------------------------- /ntp/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/metadata.json -------------------------------------------------------------------------------- /ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb: -------------------------------------------------------------------------------- 1 | #my uber ntp config 2 | # 3 | 4 | server foobar 5 | -------------------------------------------------------------------------------- /ntp/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/spec/spec.opts -------------------------------------------------------------------------------- /ntp/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/spec/spec_helper.rb -------------------------------------------------------------------------------- /ntp/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ntp/tests/init.pp -------------------------------------------------------------------------------- /opendaylight/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/opendaylight/.gitignore -------------------------------------------------------------------------------- /opendaylight/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --tty 4 | -------------------------------------------------------------------------------- /opendaylight/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/opendaylight/CHANGELOG -------------------------------------------------------------------------------- /opendaylight/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/opendaylight/Gemfile -------------------------------------------------------------------------------- /opendaylight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/opendaylight/LICENSE -------------------------------------------------------------------------------- /opendaylight/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/opendaylight/Rakefile -------------------------------------------------------------------------------- /opendaylight/spec/classes/coverage_spec.rb: -------------------------------------------------------------------------------- 1 | at_exit { RSpec::Puppet::Coverage.report! } 2 | -------------------------------------------------------------------------------- /openstack_extras/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /openstack_extras/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstack_extras/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openstacklib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/.gitignore -------------------------------------------------------------------------------- /openstacklib/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/.gitreview -------------------------------------------------------------------------------- /openstacklib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/Gemfile -------------------------------------------------------------------------------- /openstacklib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/LICENSE -------------------------------------------------------------------------------- /openstacklib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/README.md -------------------------------------------------------------------------------- /openstacklib/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /openstacklib/facts.d/os_service_default.txt: -------------------------------------------------------------------------------- 1 | os_service_default= 2 | -------------------------------------------------------------------------------- /openstacklib/lib/puppet/type/openstack_config.rb: -------------------------------------------------------------------------------- 1 | Puppet::Type.newtype(:openstack_config) do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /openstacklib/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openstacklib/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/setup.cfg -------------------------------------------------------------------------------- /openstacklib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/setup.py -------------------------------------------------------------------------------- /openstacklib/spec/classes/init_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | -------------------------------------------------------------------------------- /openstacklib/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/openstacklib/tox.ini -------------------------------------------------------------------------------- /pacemaker/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/.fixtures.yml -------------------------------------------------------------------------------- /pacemaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/.gitignore -------------------------------------------------------------------------------- /pacemaker/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/.gitreview -------------------------------------------------------------------------------- /pacemaker/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /pacemaker/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/.rubocop.yml -------------------------------------------------------------------------------- /pacemaker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/.travis.yml -------------------------------------------------------------------------------- /pacemaker/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/Gemfile -------------------------------------------------------------------------------- /pacemaker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/LICENSE -------------------------------------------------------------------------------- /pacemaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/README.md -------------------------------------------------------------------------------- /pacemaker/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/Rakefile -------------------------------------------------------------------------------- /pacemaker/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/TODO.md -------------------------------------------------------------------------------- /pacemaker/manifests/stonith/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pacemaker/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/metadata.json -------------------------------------------------------------------------------- /pacemaker/other-requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pacemaker/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pacemaker/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/setup.cfg -------------------------------------------------------------------------------- /pacemaker/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/setup.py -------------------------------------------------------------------------------- /pacemaker/templates/debian/cman_default.erb: -------------------------------------------------------------------------------- 1 | # CMAN Default File 2 | CMAN_QUORUM_TIMEOUT='0' -------------------------------------------------------------------------------- /pacemaker/templates/debian/corosync_default.erb: -------------------------------------------------------------------------------- 1 | # Corosync Default File 2 | START='yes' -------------------------------------------------------------------------------- /pacemaker/templates/debian/pacemaker_default.erb: -------------------------------------------------------------------------------- 1 | # Pacemaker Default File -------------------------------------------------------------------------------- /pacemaker/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/pacemaker/tox.ini -------------------------------------------------------------------------------- /rabbitmq/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/.fixtures.yml -------------------------------------------------------------------------------- /rabbitmq/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/.gitattributes -------------------------------------------------------------------------------- /rabbitmq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/.gitignore -------------------------------------------------------------------------------- /rabbitmq/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/.nodeset.yml -------------------------------------------------------------------------------- /rabbitmq/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /rabbitmq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/.travis.yml -------------------------------------------------------------------------------- /rabbitmq/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/CHANGELOG.md -------------------------------------------------------------------------------- /rabbitmq/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/Gemfile -------------------------------------------------------------------------------- /rabbitmq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/LICENSE -------------------------------------------------------------------------------- /rabbitmq/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/NOTICE -------------------------------------------------------------------------------- /rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/README.md -------------------------------------------------------------------------------- /rabbitmq/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/Rakefile -------------------------------------------------------------------------------- /rabbitmq/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/metadata.json -------------------------------------------------------------------------------- /rabbitmq/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/spec/spec.opts -------------------------------------------------------------------------------- /rabbitmq/templates/rabbitmq-server.service.d/limits.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | LimitNOFILE=<%= @file_limit %> 3 | -------------------------------------------------------------------------------- /rabbitmq/tests/full.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/tests/full.pp -------------------------------------------------------------------------------- /rabbitmq/tests/repo/apt.pp: -------------------------------------------------------------------------------- 1 | # requires pupetlabs-apt 2 | include rabbitmq::repo::apt 3 | -------------------------------------------------------------------------------- /rabbitmq/tests/service.pp: -------------------------------------------------------------------------------- 1 | class { 'rabbitmq::service': } 2 | -------------------------------------------------------------------------------- /rabbitmq/tests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rabbitmq/tests/site.pp -------------------------------------------------------------------------------- /rabbitmq/tests/vhosts/add.pp: -------------------------------------------------------------------------------- 1 | rabbitmq_vhost { ['fooey', 'blah']: } 2 | -------------------------------------------------------------------------------- /redis/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/.fixtures.yml -------------------------------------------------------------------------------- /redis/.puppet-lint.rc: -------------------------------------------------------------------------------- 1 | --with-filename 2 | #--no-80chars-check 3 | -------------------------------------------------------------------------------- /redis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/.travis.yml -------------------------------------------------------------------------------- /redis/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/Gemfile -------------------------------------------------------------------------------- /redis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/LICENSE -------------------------------------------------------------------------------- /redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/README.md -------------------------------------------------------------------------------- /redis/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/Rakefile -------------------------------------------------------------------------------- /redis/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/manifests/init.pp -------------------------------------------------------------------------------- /redis/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/redis/metadata.json -------------------------------------------------------------------------------- /redis/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format documentation --color --backtrace 2 | -------------------------------------------------------------------------------- /remote/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/remote/README -------------------------------------------------------------------------------- /remote/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/remote/Rakefile -------------------------------------------------------------------------------- /rsync/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/.fixtures.yml -------------------------------------------------------------------------------- /rsync/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | Gemfile.lock 3 | .rspec 4 | -------------------------------------------------------------------------------- /rsync/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/.travis.yml -------------------------------------------------------------------------------- /rsync/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/CHANGELOG.md -------------------------------------------------------------------------------- /rsync/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/Gemfile -------------------------------------------------------------------------------- /rsync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/LICENSE -------------------------------------------------------------------------------- /rsync/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/README.markdown -------------------------------------------------------------------------------- /rsync/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/Rakefile -------------------------------------------------------------------------------- /rsync/files/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/files/defaults -------------------------------------------------------------------------------- /rsync/files/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/files/motd -------------------------------------------------------------------------------- /rsync/manifests/get.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/manifests/get.pp -------------------------------------------------------------------------------- /rsync/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/manifests/init.pp -------------------------------------------------------------------------------- /rsync/manifests/put.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/manifests/put.pp -------------------------------------------------------------------------------- /rsync/manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/manifests/repo.pp -------------------------------------------------------------------------------- /rsync/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/metadata.json -------------------------------------------------------------------------------- /rsync/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/rsync/spec/spec.opts -------------------------------------------------------------------------------- /rsync/tests/init.pp: -------------------------------------------------------------------------------- 1 | include rsync 2 | -------------------------------------------------------------------------------- /rsync/tests/repo.pp: -------------------------------------------------------------------------------- 1 | include rsync::repo 2 | -------------------------------------------------------------------------------- /sahara/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/.gitignore -------------------------------------------------------------------------------- /sahara/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/.gitreview -------------------------------------------------------------------------------- /sahara/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/CHANGELOG.md -------------------------------------------------------------------------------- /sahara/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/Gemfile -------------------------------------------------------------------------------- /sahara/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/LICENSE -------------------------------------------------------------------------------- /sahara/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/README.md -------------------------------------------------------------------------------- /sahara/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /sahara/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/metadata.json -------------------------------------------------------------------------------- /sahara/releasenotes/notes/api_paste-b94e191896840944.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add api_paste type/provider. 4 | -------------------------------------------------------------------------------- /sahara/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sahara/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/setup.cfg -------------------------------------------------------------------------------- /sahara/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/setup.py -------------------------------------------------------------------------------- /sahara/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sahara/tox.ini -------------------------------------------------------------------------------- /sensu/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/.fixtures.yml -------------------------------------------------------------------------------- /sensu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/.gitignore -------------------------------------------------------------------------------- /sensu/.pmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/.pmignore -------------------------------------------------------------------------------- /sensu/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/.travis.yml -------------------------------------------------------------------------------- /sensu/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/CHANGELOG.md -------------------------------------------------------------------------------- /sensu/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/Gemfile -------------------------------------------------------------------------------- /sensu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/LICENSE -------------------------------------------------------------------------------- /sensu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/README.md -------------------------------------------------------------------------------- /sensu/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/Rakefile -------------------------------------------------------------------------------- /sensu/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/Vagrantfile -------------------------------------------------------------------------------- /sensu/lib/puppet/feature/json.rb: -------------------------------------------------------------------------------- 1 | Puppet.features.add(:json, :libs => ["json"]) 2 | -------------------------------------------------------------------------------- /sensu/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sensu/metadata.json -------------------------------------------------------------------------------- /snmp/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/.fixtures.yml -------------------------------------------------------------------------------- /snmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/.gitignore -------------------------------------------------------------------------------- /snmp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/.project -------------------------------------------------------------------------------- /snmp/.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/.puppet-lint.rc -------------------------------------------------------------------------------- /snmp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/.travis.yml -------------------------------------------------------------------------------- /snmp/DEVELOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/DEVELOP.md -------------------------------------------------------------------------------- /snmp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/Gemfile -------------------------------------------------------------------------------- /snmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/LICENSE -------------------------------------------------------------------------------- /snmp/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/README.markdown -------------------------------------------------------------------------------- /snmp/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/Rakefile -------------------------------------------------------------------------------- /snmp/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/metadata.json -------------------------------------------------------------------------------- /snmp/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/spec/spec.opts -------------------------------------------------------------------------------- /snmp/tests/client.pp: -------------------------------------------------------------------------------- 1 | include snmp::client 2 | -------------------------------------------------------------------------------- /snmp/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/tests/init.pp -------------------------------------------------------------------------------- /snmp/tests/trapd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/snmp/tests/trapd.pp -------------------------------------------------------------------------------- /ssh/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/.fixtures.yml -------------------------------------------------------------------------------- /ssh/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | *.swp 3 | .DS_Store 4 | Gemfile.lock 5 | vendor/ 6 | .bundle/ 7 | -------------------------------------------------------------------------------- /ssh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/.travis.yml -------------------------------------------------------------------------------- /ssh/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/Gemfile -------------------------------------------------------------------------------- /ssh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/LICENSE -------------------------------------------------------------------------------- /ssh/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/README.markdown -------------------------------------------------------------------------------- /ssh/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/Rakefile -------------------------------------------------------------------------------- /ssh/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssh/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/metadata.json -------------------------------------------------------------------------------- /ssh/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/ssh/spec/spec.opts -------------------------------------------------------------------------------- /ssh/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { '::ssh::server': } 2 | -------------------------------------------------------------------------------- /ssh/tests/server.pp: -------------------------------------------------------------------------------- 1 | include ssh::server 2 | -------------------------------------------------------------------------------- /staging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/staging/.gitignore -------------------------------------------------------------------------------- /staging/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/staging/.travis.yml -------------------------------------------------------------------------------- /staging/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/staging/Gemfile -------------------------------------------------------------------------------- /staging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/staging/LICENSE -------------------------------------------------------------------------------- /staging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/staging/README.md -------------------------------------------------------------------------------- /staging/Rakefile: -------------------------------------------------------------------------------- 1 | require 'bodeco_module_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /staging/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/staging/Vagrantfile -------------------------------------------------------------------------------- /staging/files/sample: -------------------------------------------------------------------------------- 1 | sample file to test module. 2 | -------------------------------------------------------------------------------- /staging/tests/init.pp: -------------------------------------------------------------------------------- 1 | include staging 2 | -------------------------------------------------------------------------------- /stdlib/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/.fixtures.yml -------------------------------------------------------------------------------- /stdlib/.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/.gemspec -------------------------------------------------------------------------------- /stdlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/.gitignore -------------------------------------------------------------------------------- /stdlib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/.project -------------------------------------------------------------------------------- /stdlib/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /stdlib/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/.sync.yml -------------------------------------------------------------------------------- /stdlib/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/.travis.yml -------------------------------------------------------------------------------- /stdlib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/CHANGELOG.md -------------------------------------------------------------------------------- /stdlib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/Gemfile -------------------------------------------------------------------------------- /stdlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/LICENSE -------------------------------------------------------------------------------- /stdlib/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/NOTICE -------------------------------------------------------------------------------- /stdlib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/Rakefile -------------------------------------------------------------------------------- /stdlib/examples/init.pp: -------------------------------------------------------------------------------- 1 | include ::stdlib 2 | -------------------------------------------------------------------------------- /stdlib/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/stdlib/metadata.json -------------------------------------------------------------------------------- /stdlib/spec/fixtures/modules/stdlib/lib: -------------------------------------------------------------------------------- 1 | ../../../../lib/ -------------------------------------------------------------------------------- /stdlib/spec/fixtures/modules/stdlib/manifests: -------------------------------------------------------------------------------- 1 | ../../../../manifests/ -------------------------------------------------------------------------------- /swift/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/.gemfile -------------------------------------------------------------------------------- /swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/.gitignore -------------------------------------------------------------------------------- /swift/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/.gitreview -------------------------------------------------------------------------------- /swift/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/.sync.yml -------------------------------------------------------------------------------- /swift/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/CHANGELOG.md -------------------------------------------------------------------------------- /swift/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/Gemfile -------------------------------------------------------------------------------- /swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/LICENSE -------------------------------------------------------------------------------- /swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/README.md -------------------------------------------------------------------------------- /swift/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /swift/ext/swift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/ext/swift.rb -------------------------------------------------------------------------------- /swift/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/metadata.json -------------------------------------------------------------------------------- /swift/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swift/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/setup.cfg -------------------------------------------------------------------------------- /swift/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/setup.py -------------------------------------------------------------------------------- /swift/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/spec/spec.opts -------------------------------------------------------------------------------- /swift/tests/all.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/tests/all.pp -------------------------------------------------------------------------------- /swift/tests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/tests/site.pp -------------------------------------------------------------------------------- /swift/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/swift/tox.ini -------------------------------------------------------------------------------- /sysctl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sysctl/.gitignore -------------------------------------------------------------------------------- /sysctl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sysctl/.travis.yml -------------------------------------------------------------------------------- /sysctl/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sysctl/Gemfile -------------------------------------------------------------------------------- /sysctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sysctl/README.md -------------------------------------------------------------------------------- /sysctl/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sysctl/Rakefile -------------------------------------------------------------------------------- /sysctl/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/sysctl/metadata.json -------------------------------------------------------------------------------- /tempest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/.gitignore -------------------------------------------------------------------------------- /tempest/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/.gitreview -------------------------------------------------------------------------------- /tempest/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /tempest/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/CHANGELOG.md -------------------------------------------------------------------------------- /tempest/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/Gemfile -------------------------------------------------------------------------------- /tempest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/LICENSE -------------------------------------------------------------------------------- /tempest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/README.md -------------------------------------------------------------------------------- /tempest/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /tempest/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tempest/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/setup.cfg -------------------------------------------------------------------------------- /tempest/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/setup.py -------------------------------------------------------------------------------- /tempest/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tempest/tox.ini -------------------------------------------------------------------------------- /timezone/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | *.swp 3 | Gemfile.lock 4 | spec/fixtures 5 | /coverage/ 6 | .vagrant 7 | -------------------------------------------------------------------------------- /timezone/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --tty 4 | -------------------------------------------------------------------------------- /timezone/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/timezone/.travis.yml -------------------------------------------------------------------------------- /timezone/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/timezone/Gemfile -------------------------------------------------------------------------------- /timezone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/timezone/LICENSE -------------------------------------------------------------------------------- /timezone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/timezone/README.md -------------------------------------------------------------------------------- /timezone/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/timezone/Rakefile -------------------------------------------------------------------------------- /timezone/tests/init.pp: -------------------------------------------------------------------------------- 1 | include timezone 2 | -------------------------------------------------------------------------------- /tomcat/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/.fixtures.yml -------------------------------------------------------------------------------- /tomcat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/.gitignore -------------------------------------------------------------------------------- /tomcat/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/.sync.yml -------------------------------------------------------------------------------- /tomcat/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/.travis.yml -------------------------------------------------------------------------------- /tomcat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/CHANGELOG.md -------------------------------------------------------------------------------- /tomcat/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/Gemfile -------------------------------------------------------------------------------- /tomcat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/LICENSE -------------------------------------------------------------------------------- /tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/README.md -------------------------------------------------------------------------------- /tomcat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/Rakefile -------------------------------------------------------------------------------- /tomcat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tomcat/metadata.json -------------------------------------------------------------------------------- /tripleo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tripleo/.gitignore -------------------------------------------------------------------------------- /tripleo/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tripleo/.gitreview -------------------------------------------------------------------------------- /tripleo/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tripleo/.sync.yml -------------------------------------------------------------------------------- /tripleo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tripleo/Gemfile -------------------------------------------------------------------------------- /tripleo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tripleo/LICENSE -------------------------------------------------------------------------------- /tripleo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tripleo/README.md -------------------------------------------------------------------------------- /tripleo/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/tripleo/Rakefile -------------------------------------------------------------------------------- /trove/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/.gitignore -------------------------------------------------------------------------------- /trove/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/.gitreview -------------------------------------------------------------------------------- /trove/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/CHANGELOG.md -------------------------------------------------------------------------------- /trove/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/Gemfile -------------------------------------------------------------------------------- /trove/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/LICENSE -------------------------------------------------------------------------------- /trove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/README.md -------------------------------------------------------------------------------- /trove/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /trove/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/metadata.json -------------------------------------------------------------------------------- /trove/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trove/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/setup.cfg -------------------------------------------------------------------------------- /trove/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/setup.py -------------------------------------------------------------------------------- /trove/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/trove/tox.ini -------------------------------------------------------------------------------- /uchiwa/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/.fixtures.yml -------------------------------------------------------------------------------- /uchiwa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/.gitignore -------------------------------------------------------------------------------- /uchiwa/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /uchiwa/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/.travis.yml -------------------------------------------------------------------------------- /uchiwa/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/CHANGELOG.md -------------------------------------------------------------------------------- /uchiwa/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | pauloconnor 2 | bjwschaap 3 | LarsFronius 4 | -------------------------------------------------------------------------------- /uchiwa/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/Gemfile -------------------------------------------------------------------------------- /uchiwa/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/Gemfile.lock -------------------------------------------------------------------------------- /uchiwa/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/Guardfile -------------------------------------------------------------------------------- /uchiwa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/LICENSE -------------------------------------------------------------------------------- /uchiwa/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/Rakefile -------------------------------------------------------------------------------- /uchiwa/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/uchiwa/metadata.json -------------------------------------------------------------------------------- /vcsrepo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vcsrepo/.gitignore -------------------------------------------------------------------------------- /vcsrepo/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vcsrepo/.sync.yml -------------------------------------------------------------------------------- /vcsrepo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vcsrepo/.travis.yml -------------------------------------------------------------------------------- /vcsrepo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vcsrepo/CHANGELOG.md -------------------------------------------------------------------------------- /vcsrepo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vcsrepo/Gemfile -------------------------------------------------------------------------------- /vcsrepo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vcsrepo/LICENSE -------------------------------------------------------------------------------- /vcsrepo/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vcsrepo/Rakefile -------------------------------------------------------------------------------- /vlan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vlan/LICENSE -------------------------------------------------------------------------------- /vlan/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vlan/README -------------------------------------------------------------------------------- /vswitch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/.gitignore -------------------------------------------------------------------------------- /vswitch/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/.gitreview -------------------------------------------------------------------------------- /vswitch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/CHANGELOG.md -------------------------------------------------------------------------------- /vswitch/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/Gemfile -------------------------------------------------------------------------------- /vswitch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/LICENSE -------------------------------------------------------------------------------- /vswitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/README.md -------------------------------------------------------------------------------- /vswitch/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /vswitch/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vswitch/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/setup.cfg -------------------------------------------------------------------------------- /vswitch/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/setup.py -------------------------------------------------------------------------------- /vswitch/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/vswitch/tox.ini -------------------------------------------------------------------------------- /xinetd/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/.fixtures.yml -------------------------------------------------------------------------------- /xinetd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/.gitignore -------------------------------------------------------------------------------- /xinetd/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/.nodeset.yml -------------------------------------------------------------------------------- /xinetd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/.travis.yml -------------------------------------------------------------------------------- /xinetd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/CHANGELOG.md -------------------------------------------------------------------------------- /xinetd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/Gemfile -------------------------------------------------------------------------------- /xinetd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/LICENSE -------------------------------------------------------------------------------- /xinetd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/README.md -------------------------------------------------------------------------------- /xinetd/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/Rakefile -------------------------------------------------------------------------------- /xinetd/examples/init.pp: -------------------------------------------------------------------------------- 1 | include ::xinetd 2 | -------------------------------------------------------------------------------- /xinetd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/xinetd/metadata.json -------------------------------------------------------------------------------- /zaqar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/.gitignore -------------------------------------------------------------------------------- /zaqar/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/.gitreview -------------------------------------------------------------------------------- /zaqar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/CHANGELOG.md -------------------------------------------------------------------------------- /zaqar/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/Gemfile -------------------------------------------------------------------------------- /zaqar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/LICENSE -------------------------------------------------------------------------------- /zaqar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/README.md -------------------------------------------------------------------------------- /zaqar/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppet-openstack_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /zaqar/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/metadata.json -------------------------------------------------------------------------------- /zaqar/releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zaqar/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/setup.cfg -------------------------------------------------------------------------------- /zaqar/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/setup.py -------------------------------------------------------------------------------- /zaqar/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/tests/init.pp -------------------------------------------------------------------------------- /zaqar/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zaqar/tox.ini -------------------------------------------------------------------------------- /zookeeper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zookeeper/.gitignore -------------------------------------------------------------------------------- /zookeeper/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zookeeper/.rspec -------------------------------------------------------------------------------- /zookeeper/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zookeeper/Gemfile -------------------------------------------------------------------------------- /zookeeper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zookeeper/LICENSE -------------------------------------------------------------------------------- /zookeeper/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zookeeper/Puppetfile -------------------------------------------------------------------------------- /zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zookeeper/README.md -------------------------------------------------------------------------------- /zookeeper/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/openstack-puppet-modules/HEAD/zookeeper/Rakefile -------------------------------------------------------------------------------- /zookeeper/templates/conf/myid.erb: -------------------------------------------------------------------------------- 1 | <%= @id %> 2 | --------------------------------------------------------------------------------