Created
July 8, 2013 18:02
-
-
Save dizz/5950994 to your computer and use it in GitHub Desktop.
production structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
production/ | |
|-- apache | |
| |-- CHANGELOG | |
| |-- files | |
| | `-- httpd | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- a2mod | |
| | | | |-- a2mod.rb | |
| | | | |-- gentoo.rb | |
| | | | |-- modfix.rb | |
| | | | `-- redhat.rb | |
| | | `-- a2mod.rb | |
| | `-- type | |
| | `-- a2mod.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- balancermember.pp | |
| | |-- balancer.pp | |
| | |-- default_mods.pp | |
| | |-- dev.pp | |
| | |-- init.pp | |
| | |-- listen.pp | |
| | |-- mod | |
| | | |-- alias.pp | |
| | | |-- auth_basic.pp | |
| | | |-- auth_kerb.pp | |
| | | |-- autoindex.pp | |
| | | |-- cache.pp | |
| | | |-- cgid.pp | |
| | | |-- cgi.pp | |
| | | |-- dav_fs.pp | |
| | | |-- dav.pp | |
| | | |-- dav_svn.pp | |
| | | |-- deflate.pp | |
| | | |-- dev.pp | |
| | | |-- dir.pp | |
| | | |-- disk_cache.pp | |
| | | |-- fcgid.pp | |
| | | |-- headers.pp | |
| | | |-- info.pp | |
| | | |-- ldap.pp | |
| | | |-- mime_magic.pp | |
| | | |-- mime.pp | |
| | | |-- mpm_event.pp | |
| | | |-- negotiation.pp | |
| | | |-- passenger.pp | |
| | | |-- perl.pp | |
| | | |-- php.pp | |
| | | |-- prefork.pp | |
| | | |-- proxy_html.pp | |
| | | |-- proxy_http.pp | |
| | | |-- proxy.pp | |
| | | |-- python.pp | |
| | | |-- reqtimeout.pp | |
| | | |-- rewrite.pp | |
| | | |-- setenvif.pp | |
| | | |-- ssl.pp | |
| | | |-- status.pp | |
| | | |-- userdir.pp | |
| | | |-- worker.pp | |
| | | |-- wsgi.pp | |
| | | `-- xsendfile.pp | |
| | |-- mod.pp | |
| | |-- namevirtualhost.pp | |
| | |-- params.pp | |
| | |-- php.pp | |
| | |-- proxy.pp | |
| | |-- python.pp | |
| | |-- ssl.pp | |
| | `-- vhost.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- apache_spec.rb | |
| | | |-- dev_spec.rb | |
| | | |-- mod | |
| | | | |-- auth_kerb_spec.rb | |
| | | | |-- dav_svn_spec.rb | |
| | | | |-- dev_spec.rb | |
| | | | |-- dir_spec.rb | |
| | | | |-- fcgid_spec.rb | |
| | | | |-- info_spec.rb | |
| | | | |-- passenger_spec.rb | |
| | | | |-- perl_spec.rb | |
| | | | |-- php_spec.rb | |
| | | | |-- prefork_spec.rb | |
| | | | |-- proxy_html_spec.rb | |
| | | | |-- python_spec.rb | |
| | | | |-- ssl_spec.rb | |
| | | | |-- worker_spec.rb | |
| | | | `-- wsgi_spec.rb | |
| | | `-- params_spec.rb | |
| | |-- defines | |
| | | |-- mod_spec.rb | |
| | | `-- vhost_spec.rb | |
| | |-- fixtures | |
| | | |-- modules | |
| | | | `-- site_apache | |
| | | | `-- templates | |
| | | | `-- fake.conf.erb | |
| | | `-- system | |
| | | `-- distro_commands.yaml | |
| | |-- spec_helper.rb | |
| | |-- spec_helper_system.rb | |
| | |-- spec.opts | |
| | |-- system | |
| | | |-- basic_spec.rb | |
| | | |-- class_spec.rb | |
| | | |-- mod_php_spec.rb | |
| | | `-- vhost_spec.rb | |
| | `-- unit | |
| | `-- provider | |
| | `-- a2mod | |
| | `-- gentoo_spec.rb | |
| |-- templates | |
| | |-- httpd.conf.erb | |
| | |-- listen.erb | |
| | |-- mod | |
| | | |-- alias.conf.erb | |
| | | |-- autoindex.conf.erb | |
| | | |-- cgid.conf.erb | |
| | | |-- dav_fs.conf.erb | |
| | | |-- deflate.conf.erb | |
| | | |-- dir.conf.erb | |
| | | |-- disk_cache.conf.erb | |
| | | |-- info.conf.erb | |
| | | |-- ldap.conf.erb | |
| | | |-- mime.conf.erb | |
| | | |-- mime_magic.conf.erb | |
| | | |-- mpm_event.conf.erb | |
| | | |-- negotiation.conf.erb | |
| | | |-- passenger.conf.erb | |
| | | |-- php.conf.erb | |
| | | |-- prefork.conf.erb | |
| | | |-- proxy.conf.erb | |
| | | |-- proxy_html.conf.erb | |
| | | |-- reqtimeout.conf.erb | |
| | | |-- setenvif.conf.erb | |
| | | |-- ssl.conf.erb | |
| | | |-- status.conf.erb | |
| | | |-- userdir.conf.erb | |
| | | `-- worker.conf.erb | |
| | |-- namevirtualhost.erb | |
| | |-- ports_header.erb | |
| | |-- vhost | |
| | | |-- _aliases.erb | |
| | | |-- _block.erb | |
| | | |-- _custom_fragment.erb | |
| | | |-- _directories.erb | |
| | | |-- _proxy.erb | |
| | | |-- _rack.erb | |
| | | |-- _redirect.erb | |
| | | |-- _requestheader.erb | |
| | | |-- _rewrite.erb | |
| | | |-- _scriptalias.erb | |
| | | |-- _serveralias.erb | |
| | | |-- _setenv.erb | |
| | | `-- _ssl.erb | |
| | `-- vhost.conf.erb | |
| `-- tests | |
| |-- apache.pp | |
| |-- dev.pp | |
| |-- init.pp | |
| |-- php.pp | |
| |-- vhost_ip_based.pp | |
| |-- vhost.pp | |
| |-- vhost_ssl.pp | |
| `-- vhosts_without_listen.pp | |
|-- apt | |
| |-- CHANGELOG | |
| |-- Gemfile | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- backports.pp | |
| | |-- builddep.pp | |
| | |-- conf.pp | |
| | |-- debian | |
| | | |-- testing.pp | |
| | | `-- unstable.pp | |
| | |-- force.pp | |
| | |-- init.pp | |
| | |-- key.pp | |
| | |-- params.pp | |
| | |-- pin.pp | |
| | |-- ppa.pp | |
| | |-- release.pp | |
| | |-- source.pp | |
| | `-- update.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- apt_spec.rb | |
| | | |-- backports_spec.rb | |
| | | |-- debian_testing_spec.rb | |
| | | |-- debian_unstable_spec.rb | |
| | | |-- params_spec.rb | |
| | | `-- release_spec.rb | |
| | |-- defines | |
| | | |-- builddep_spec.rb | |
| | | |-- conf_spec.rb | |
| | | |-- force_spec.rb | |
| | | |-- key_spec.rb | |
| | | |-- pin_spec.rb | |
| | | |-- ppa_spec.rb | |
| | | `-- source_spec.rb | |
| | `-- spec_helper.rb | |
| |-- templates | |
| | |-- pin.pref.erb | |
| | `-- source.list.erb | |
| `-- tests | |
| |-- builddep.pp | |
| |-- debian | |
| | |-- testing.pp | |
| | `-- unstable.pp | |
| |-- force.pp | |
| |-- init.pp | |
| |-- key.pp | |
| |-- params.pp | |
| |-- pin.pp | |
| |-- ppa.pp | |
| |-- release.pp | |
| `-- source.pp | |
|-- cinder | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- cinder_api_paste_ini | |
| | | | `-- ini_setting.rb | |
| | | `-- cinder_config | |
| | | `-- ini_setting.rb | |
| | `-- type | |
| | |-- cinder_api_paste_ini.rb | |
| | `-- cinder_config.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- api.pp | |
| | |-- base.pp | |
| | |-- client.pp | |
| | |-- db | |
| | | |-- mysql | |
| | | | `-- host_access.pp | |
| | | |-- mysql.pp | |
| | | |-- postgresql.pp | |
| | | `-- sync.pp | |
| | |-- init.pp | |
| | |-- keystone | |
| | | `-- auth.pp | |
| | |-- params.pp | |
| | |-- qpid.pp | |
| | |-- rabbitmq.pp | |
| | |-- scheduler.pp | |
| | |-- setup_test_volume.pp | |
| | |-- volume | |
| | | |-- glusterfs.pp | |
| | | |-- iscsi.pp | |
| | | |-- netapp.pp | |
| | | |-- nexenta.pp | |
| | | |-- nfs.pp | |
| | | |-- rbd.pp | |
| | | `-- san.pp | |
| | `-- volume.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| `-- spec | |
| |-- classes | |
| | |-- cinder_api_spec.rb | |
| | |-- cinder_client_spec.rb | |
| | |-- cinder_db_mysql_spec.rb | |
| | |-- cinder_db_postgresql_spec.rb | |
| | |-- cinder_db_sync_spec.rb | |
| | |-- cinder_keystone_auth_spec.rb | |
| | |-- cinder_params_spec.rb | |
| | |-- cinder_qpid_spec.rb | |
| | |-- cinder_rabbitmq_spec.rb | |
| | |-- cinder_scheduler_spec.rb | |
| | |-- cinder_setup_test_volume_spec.rb | |
| | |-- cinder_spec.rb | |
| | |-- cinder_volume_glusterfs_spec.rb | |
| | |-- cinder_volume_iscsi_spec.rb | |
| | |-- cinder_volume_netapp_spec.rb | |
| | |-- cinder_volume_nexenta_spec.rb | |
| | |-- cinder_volume_nfs_spec.rb | |
| | |-- cinder_volume_rbd_spec.rb | |
| | |-- cinder_volume_san_spec.rb | |
| | `-- cinder_volume_spec.rb | |
| `-- spec_helper.rb | |
|-- concat | |
| |-- CHANGELOG | |
| |-- files | |
| | |-- concatfragments.sh | |
| | `-- null | |
| |-- lib | |
| | `-- facter | |
| | `-- concat_basedir.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- fragment.pp | |
| | |-- init.pp | |
| | `-- setup.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README | |
| |-- README.markdown | |
| `-- spec | |
| |-- defines | |
| | `-- init_spec.rb | |
| |-- fixtures | |
| | `-- manifests | |
| | `-- site.pp | |
| `-- spec_helper.rb | |
|-- git | |
| |-- CHANGELOG | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- gitosis.pp | |
| | `-- init.pp | |
| |-- Modulefile | |
| |-- README | |
| `-- tests | |
| |-- gitosis.pp | |
| `-- init.pp | |
|-- glance | |
| |-- ext | |
| | |-- glance.rb | |
| | `-- glance.sh | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- glance_api_config | |
| | | | `-- ini_setting.rb | |
| | | |-- glance_api_paste_ini | |
| | | | `-- ini_setting.rb | |
| | | |-- glance_cache_config | |
| | | | `-- ini_setting.rb | |
| | | |-- glance_image | |
| | | | `-- glance.rb | |
| | | |-- glance.rb | |
| | | |-- glance_registry_config | |
| | | | `-- ini_setting.rb | |
| | | `-- glance_registry_paste_ini | |
| | | `-- ini_setting.rb | |
| | `-- type | |
| | |-- glance_api_config.rb | |
| | |-- glance_api_paste_ini.rb | |
| | |-- glance_cache_config.rb | |
| | |-- glance_image.rb | |
| | |-- glance_registry_config.rb | |
| | `-- glance_registry_paste_ini.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- api.pp | |
| | |-- backend | |
| | | |-- file.pp | |
| | | `-- swift.pp | |
| | |-- client.pp | |
| | |-- db | |
| | | |-- mysql | |
| | | | `-- host_access.pp | |
| | | |-- mysql.pp | |
| | | `-- postgresql.pp | |
| | |-- init.pp | |
| | |-- keystone | |
| | | `-- auth.pp | |
| | |-- notify | |
| | | |-- qpid.pp | |
| | | `-- rabbitmq.pp | |
| | |-- params.pp | |
| | |-- registry.pp | |
| | `-- scrubber.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- glance_api_spec.rb | |
| | | |-- glance_backend_file_spec.rb | |
| | | |-- glance_backend_swift_spec.rb | |
| | | |-- glance_client_spec.rb | |
| | | |-- glance_db_mysql_spec.rb | |
| | | |-- glance_db_postgresql_spec.rb | |
| | | |-- glance_keystone_auth_spec.rb | |
| | | |-- glance_notify_qpid_spec.rb | |
| | | |-- glance_notify_rabbitmq_spec.rb | |
| | | |-- glance_registry_spec.rb | |
| | | `-- glance_spec.rb | |
| | |-- spec_helper.rb | |
| | `-- spec.opts | |
| `-- tests | |
| |-- api.pp | |
| |-- init.pp | |
| |-- registry.pp | |
| `-- site.pp | |
|-- horizon | |
| |-- Gemfile | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- init.pp | |
| | `-- params.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | `-- horizon_init_spec.rb | |
| | |-- fixtures | |
| | | `-- override_local_settings.py.erb | |
| | `-- spec_helper.rb | |
| `-- templates | |
| `-- local_settings.py.erb | |
|-- inifile | |
| |-- CHANGELOG | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- ini_setting | |
| | | | `-- ruby.rb | |
| | | `-- ini_subsetting | |
| | | `-- ruby.rb | |
| | |-- type | |
| | | |-- ini_setting.rb | |
| | | `-- ini_subsetting.rb | |
| | `-- util | |
| | |-- external_iterator.rb | |
| | |-- ini_file | |
| | | `-- section.rb | |
| | |-- ini_file.rb | |
| | `-- setting_value.rb | |
| |-- LICENSE | |
| |-- Modulefile | |
| |-- README.markdown | |
| |-- spec | |
| | |-- spec_helper.rb | |
| | `-- unit | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- ini_setting | |
| | | | `-- ruby_spec.rb | |
| | | `-- ini_subsetting | |
| | | `-- ruby_spec.rb | |
| | `-- util | |
| | |-- external_iterator_spec.rb | |
| | |-- ini_file_spec.rb | |
| | `-- setting_value_spec.rb | |
| `-- tests | |
| |-- ini_setting.pp | |
| `-- ini_subsetting.pp | |
|-- keystone | |
| |-- ext | |
| | `-- keystone_test.rb | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- keystone_config | |
| | | | `-- ini_setting.rb | |
| | | |-- keystone_endpoint | |
| | | | `-- keystone.rb | |
| | | |-- keystone.rb | |
| | | |-- keystone_role | |
| | | | `-- keystone.rb | |
| | | |-- keystone_service | |
| | | | `-- keystone.rb | |
| | | |-- keystone_tenant | |
| | | | `-- keystone.rb | |
| | | |-- keystone_user | |
| | | | `-- keystone.rb | |
| | | `-- keystone_user_role | |
| | | `-- keystone.rb | |
| | `-- type | |
| | |-- keystone_config.rb | |
| | |-- keystone_endpoint.rb | |
| | |-- keystone_role.rb | |
| | |-- keystone_service.rb | |
| | |-- keystone_tenant.rb | |
| | |-- keystone_user.rb | |
| | `-- keystone_user_role.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- client.pp | |
| | |-- db | |
| | | |-- mysql | |
| | | | `-- host_access.pp | |
| | | |-- mysql.pp | |
| | | `-- postgresql.pp | |
| | |-- dev | |
| | | `-- install.pp | |
| | |-- endpoint.pp | |
| | |-- init.pp | |
| | |-- ldap.pp | |
| | |-- params.pp | |
| | |-- python.pp | |
| | `-- roles | |
| | `-- admin.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- keystone_client_spec.rb | |
| | | |-- keystone_db_mysql_spec.rb | |
| | | |-- keystone_db_postgresql_spec.rb | |
| | | |-- keystone_endpoint_spec.rb | |
| | | |-- keystone_ldap_spec.rb | |
| | | |-- keystone_python_spec.rb | |
| | | |-- keystone_roles_admin_spec.rb | |
| | | `-- keystone_spec.rb | |
| | |-- spec_helper.rb | |
| | |-- spec.opts | |
| | `-- unit | |
| | |-- provider | |
| | | |-- keystone_endpoint | |
| | | | `-- keystone_spec.rb | |
| | | |-- keystone_spec.rb | |
| | | |-- keystone_tenant | |
| | | | `-- keystone_spec.rb | |
| | | `-- keystone_user | |
| | | `-- keystone_spec.rb | |
| | `-- type | |
| | `-- keystone_endpoint_spec.rb | |
| `-- tests | |
| `-- site.pp | |
|-- memcached | |
| |-- lib | |
| | `-- puppet | |
| | `-- parser | |
| | `-- functions | |
| | `-- memcached_max_memory.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- init.pp | |
| | `-- params.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README-DEVELOPER | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | `-- memcached_spec.rb | |
| | |-- spec_helper.rb | |
| | `-- spec.opts | |
| |-- templates | |
| | |-- memcached.conf.erb | |
| | `-- memcached_sysconfig.erb | |
| `-- tests | |
| `-- init.pp | |
|-- mysql | |
| |-- CHANGELOG | |
| |-- files | |
| | `-- mysqltuner.pl | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- parser | |
| | | `-- functions | |
| | | `-- mysql_password.rb | |
| | |-- provider | |
| | | |-- database | |
| | | | `-- mysql.rb | |
| | | |-- database_grant | |
| | | | `-- mysql.rb | |
| | | `-- database_user | |
| | | `-- mysql.rb | |
| | `-- type | |
| | |-- database_grant.rb | |
| | |-- database.rb | |
| | `-- database_user.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- backup.pp | |
| | |-- config.pp | |
| | |-- db.pp | |
| | |-- init.pp | |
| | |-- java.pp | |
| | |-- params.pp | |
| | |-- perl.pp | |
| | |-- php.pp | |
| | |-- python.pp | |
| | |-- ruby.pp | |
| | |-- server | |
| | | |-- account_security.pp | |
| | | |-- config.pp | |
| | | |-- monitor.pp | |
| | | `-- mysqltuner.pp | |
| | `-- server.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- mysql_backup_spec.rb | |
| | | |-- mysql_config_spec.rb | |
| | | |-- mysql_init_spec.rb | |
| | | |-- mysql_java_spec.rb | |
| | | |-- mysql_perl_spec.rb | |
| | | |-- mysql_php_spec.rb | |
| | | |-- mysql_python_spec.rb | |
| | | |-- mysql_ruby_spec.rb | |
| | | |-- mysql_server_account_security_spec.rb | |
| | | |-- mysql_server_monitor_spec.rb | |
| | | `-- mysql_server_spec.rb | |
| | |-- defines | |
| | | |-- mysql_db_spec.rb | |
| | | `-- mysql_server_config_spec.rb | |
| | |-- spec_helper.rb | |
| | |-- spec.opts | |
| | `-- unit | |
| | |-- mysql_password_spec.rb | |
| | `-- puppet | |
| | `-- provider | |
| | |-- database | |
| | | `-- mysql_spec.rb | |
| | |-- database_grant | |
| | | `-- mysql_spec.rb | |
| | `-- database_user | |
| | `-- mysql_spec.rb | |
| |-- templates | |
| | |-- my.cnf.erb | |
| | |-- my.cnf.pass.erb | |
| | |-- my.conf.cnf.erb | |
| | `-- mysqlbackup.sh.erb | |
| |-- tests | |
| | |-- backup.pp | |
| | |-- init.pp | |
| | |-- java.pp | |
| | |-- mysql_database.pp | |
| | |-- mysql_grant.pp | |
| | |-- mysql_user.pp | |
| | |-- perl.pp | |
| | |-- python.pp | |
| | |-- ruby.pp | |
| | |-- server | |
| | | |-- account_security.pp | |
| | | `-- config.pp | |
| | `-- server.pp | |
| `-- TODO | |
|-- nova | |
| |-- files | |
| | |-- compute.py | |
| | |-- connection.py | |
| | `-- nova-novncproxy.init | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- nova_admin | |
| | | | `-- nova_manage.rb | |
| | | |-- nova_config | |
| | | | `-- ini_setting.rb | |
| | | |-- nova_floating | |
| | | | `-- nova_manage.rb | |
| | | |-- nova_network | |
| | | | `-- nova_manage.rb | |
| | | |-- nova_paste_api_ini | |
| | | | `-- ini_setting.rb | |
| | | `-- nova_project | |
| | | `-- nova_manage.rb | |
| | `-- type | |
| | |-- nova_admin.rb | |
| | |-- nova_config.rb | |
| | |-- nova_floating.rb | |
| | |-- nova_network.rb | |
| | |-- nova_paste_api_ini.rb | |
| | `-- nova_project.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- api.pp | |
| | |-- cert.pp | |
| | |-- client.pp | |
| | |-- compute | |
| | | |-- file_hack.pp | |
| | | |-- libvirt.pp | |
| | | |-- quantum.pp | |
| | | `-- xenserver.pp | |
| | |-- compute.pp | |
| | |-- conductor.pp | |
| | |-- consoleauth.pp | |
| | |-- db | |
| | | |-- mysql | |
| | | | `-- host_access.pp | |
| | | |-- mysql.pp | |
| | | `-- postgresql.pp | |
| | |-- generic_service.pp | |
| | |-- init.pp | |
| | |-- keystone | |
| | | `-- auth.pp | |
| | |-- manage | |
| | | |-- floating.pp | |
| | | `-- network.pp | |
| | |-- migration | |
| | | `-- libvirt.pp | |
| | |-- network | |
| | | |-- bridge.pp | |
| | | |-- flatdhcp.pp | |
| | | |-- flat.pp | |
| | | |-- quantum.pp | |
| | | `-- vlan.pp | |
| | |-- network.pp | |
| | |-- objectstore.pp | |
| | |-- params.pp | |
| | |-- qpid.pp | |
| | |-- quota.pp | |
| | |-- rabbitmq.pp | |
| | |-- scheduler.pp | |
| | |-- utilities.pp | |
| | |-- vncproxy.pp | |
| | |-- volume | |
| | | |-- iscsi.pp | |
| | | `-- san.pp | |
| | `-- volume.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- nova_api_spec.rb | |
| | | |-- nova_cert_spec.rb | |
| | | |-- nova_client_spec.rb | |
| | | |-- nova_compute_libvirt_spec.rb | |
| | | |-- nova_compute_quantum_spec.rb | |
| | | |-- nova_compute_spec.rb | |
| | | |-- nova_compute_xenserver_spec.rb | |
| | | |-- nova_conductor_spec.rb | |
| | | |-- nova_consoleauth_spec.rb | |
| | | |-- nova_db_mysql_spec.rb | |
| | | |-- nova_db_postgresql_spec.rb | |
| | | |-- nova_init_spec.rb | |
| | | |-- nova_keystone_endpoint_spec.rb | |
| | | |-- nova_network_flatdhcp_spec.rb | |
| | | |-- nova_network_flat_spec.rb | |
| | | |-- nova_network_quantum_spec.rb | |
| | | |-- nova_network_spec.rb | |
| | | |-- nova_network_vlan_spec.rb | |
| | | |-- nova_objectstore_spec.rb | |
| | | |-- nova_qpid_spec.rb | |
| | | |-- nova_quota_spec.rb | |
| | | |-- nova_rabbitmq_spec.rb | |
| | | |-- nova_scheduler_spec.rb | |
| | | |-- nova_vnc_proxy_spec.rb | |
| | | |-- nova_volume_iscsi_spec.rb | |
| | | `-- nova_volume_spec.rb | |
| | |-- defines | |
| | | |-- nova_generic_service_spec.rb | |
| | | `-- nova_manage_networks_spec.rb | |
| | |-- spec_helper.rb | |
| | `-- unit | |
| | |-- provider | |
| | | `-- nova_config | |
| | | `-- ini_setting_spec.rb | |
| | `-- type | |
| | |-- nova_config_spec.rb | |
| | `-- nova_network_spec.rb | |
| `-- tests | |
| |-- all.pp | |
| |-- multi.pp | |
| `-- site.pp | |
|-- openstack | |
| |-- files | |
| | |-- RPM-GPG-KEY-EPEL-6 | |
| | `-- RPM-GPG-KEY-RDO-Grizzly | |
| |-- Gemfile | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- all.pp | |
| | |-- auth_file.pp | |
| | |-- cinder | |
| | | |-- all.pp | |
| | | |-- controller.pp | |
| | | `-- storage.pp | |
| | |-- client.pp | |
| | |-- compute.pp | |
| | |-- controller.pp | |
| | |-- db | |
| | | `-- mysql.pp | |
| | |-- glance.pp | |
| | |-- horizon.pp | |
| | |-- keystone.pp | |
| | |-- nova | |
| | | `-- controller.pp | |
| | |-- provision.pp | |
| | |-- quantum.pp | |
| | |-- repo | |
| | | |-- epel.pp | |
| | | |-- rdo.pp | |
| | | |-- uca.pp | |
| | | `-- yum_refresh.pp | |
| | |-- repo.pp | |
| | |-- swift | |
| | | |-- proxy.pp | |
| | | `-- storage-node.pp | |
| | `-- test_file.pp | |
| |-- Modulefile | |
| |-- other_repos.yaml | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- openstack_all_spec.rb | |
| | | |-- openstack_auth_file_spec.rb | |
| | | |-- openstack_cinder_all_spec.rb | |
| | | |-- openstack_cinder_controller_spec.rb | |
| | | |-- openstack_cinder_storage_spec.rb | |
| | | |-- openstack_client_spec.rb | |
| | | |-- openstack_compute_spec.rb | |
| | | |-- openstack_controller_spec.rb | |
| | | |-- openstack_glance_spec.rb | |
| | | |-- openstack_horizon_spec.rb | |
| | | |-- openstack_keystone_spec.rb | |
| | | |-- openstack_nova_controller_spec.rb | |
| | | |-- openstack_quantum_spec.rb | |
| | | |-- openstack_repo_spec.rb | |
| | | |-- openstack_swift_storage-node.rb | |
| | | `-- openstack_test_file_spec.rb | |
| | `-- spec_helper.rb | |
| |-- templates | |
| | `-- test_nova.sh.erb | |
| `-- tests | |
| |-- all.pp | |
| |-- cloudcontroller.pp | |
| |-- compute.pp | |
| `-- site.pp | |
|-- quantum | |
| |-- examples | |
| | |-- base_provision.pp | |
| | |-- create_network.sh | |
| | `-- quantum.pp | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- quantum_api_config | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum_config | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum_dhcp_agent_config | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum_l3_agent_config | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum_l3_ovs_bridge | |
| | | | `-- quantum.rb | |
| | | |-- quantum_lbaas_agent_config | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum_metadata_agent_config | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum_network | |
| | | | `-- quantum.rb | |
| | | |-- quantum_plugin_linuxbridge | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum_plugin_ovs | |
| | | | `-- ini_setting.rb | |
| | | |-- quantum.rb | |
| | | |-- quantum_router | |
| | | | `-- quantum.rb | |
| | | |-- quantum_router_interface | |
| | | | `-- quantum.rb | |
| | | `-- quantum_subnet | |
| | | `-- quantum.rb | |
| | `-- type | |
| | |-- quantum_api_config.rb | |
| | |-- quantum_config.rb | |
| | |-- quantum_dhcp_agent_config.rb | |
| | |-- quantum_l3_agent_config.rb | |
| | |-- quantum_l3_ovs_bridge.rb | |
| | |-- quantum_lbaas_agent_config.rb | |
| | |-- quantum_metadata_agent_config.rb | |
| | |-- quantum_network.rb | |
| | |-- quantum_plugin_linuxbridge.rb | |
| | |-- quantum_plugin_ovs.rb | |
| | |-- quantum_router_interface.rb | |
| | |-- quantum_router.rb | |
| | `-- quantum_subnet.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- agents | |
| | | |-- dhcp.pp | |
| | | |-- l3.pp | |
| | | |-- lbaas.pp | |
| | | |-- linuxbridge.pp | |
| | | |-- metadata.pp | |
| | | `-- ovs.pp | |
| | |-- client.pp | |
| | |-- db | |
| | | |-- mysql | |
| | | | `-- host_access.pp | |
| | | `-- mysql.pp | |
| | |-- init.pp | |
| | |-- keystone | |
| | | `-- auth.pp | |
| | |-- params.pp | |
| | |-- plugins | |
| | | |-- linuxbridge.pp | |
| | | |-- ovs | |
| | | | |-- bridge.pp | |
| | | | `-- port.pp | |
| | | `-- ovs.pp | |
| | |-- quota.pp | |
| | `-- server.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| `-- spec | |
| |-- classes | |
| | |-- quantum_agents_dhcp_spec.rb | |
| | |-- quantum_agents_l3_spec.rb | |
| | |-- quantum_agents_lbaas_spec.rb | |
| | |-- quantum_agents_linuxbridge_spec.rb | |
| | |-- quantum_agents_metadata_spec.rb | |
| | |-- quantum_agents_ovs_spec.rb | |
| | |-- quantum_client_spec.rb | |
| | |-- quantum_db_mysql_spec.rb | |
| | |-- quantum_init_spec.rb | |
| | |-- quantum_keystone_auth_spec.rb | |
| | |-- quantum_plugins_linuxbridge_spec.rb | |
| | |-- quantum_plugins_ovs_spec.rb | |
| | |-- quantum_quota_spec.rb | |
| | `-- quantum_server_spec.rb | |
| |-- defines | |
| | `-- quantum_db_mysql_host_access_spec.rb | |
| |-- shared_examples.rb | |
| |-- spec_helper.rb | |
| `-- unit | |
| `-- provider | |
| |-- quantum_l3_ovs_bridge | |
| | `-- quantum_spec.rb | |
| |-- quantum_network | |
| | `-- quantum_spec.rb | |
| |-- quantum_router | |
| | `-- quantum_spec.rb | |
| |-- quantum_router_interface | |
| | `-- quantum_spec.rb | |
| |-- quantum_spec.rb | |
| `-- quantum_subnet | |
| `-- quantum_spec.rb | |
|-- rabbitmq | |
| |-- CHANGELOG | |
| |-- files | |
| | |-- plugins | |
| | | |-- amqp_client-2.3.1.ez | |
| | | `-- rabbit_stomp-2.3.1.ez | |
| | `-- README.markdown | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- rabbitmq_exchange | |
| | | | |-- default.rb | |
| | | | `-- rabbitmqadmin.rb | |
| | | |-- rabbitmq_plugin | |
| | | | |-- default.rb | |
| | | | `-- rabbitmqplugins.rb | |
| | | |-- rabbitmq_user | |
| | | | |-- default.rb | |
| | | | `-- rabbitmqctl.rb | |
| | | |-- rabbitmq_user_permissions | |
| | | | |-- default.rb | |
| | | | `-- rabbitmqctl.rb | |
| | | `-- rabbitmq_vhost | |
| | | |-- default.rb | |
| | | `-- rabbitmqctl.rb | |
| | `-- type | |
| | |-- rabbitmq_exchange.rb | |
| | |-- rabbitmq_plugin.rb | |
| | |-- rabbitmq_user_permissions.rb | |
| | |-- rabbitmq_user.rb | |
| | `-- rabbitmq_vhost.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- params.pp | |
| | |-- repo | |
| | | |-- apt.pp | |
| | | `-- rhel.pp | |
| | |-- server.pp | |
| | `-- service.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- rabbitmq_repo_rhel.rb | |
| | | |-- rabbitmq_server_spec.rb | |
| | | `-- rabbitmq_service_spec.rb | |
| | |-- README.markdown | |
| | |-- spec_helper.rb | |
| | |-- spec.opts | |
| | `-- unit | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- rabbitmq_exchange | |
| | | | `-- rabbitmqadmin_spec.rb | |
| | | |-- rabbitmq_user | |
| | | | `-- rabbitmqctl_spec.rb | |
| | | |-- rabbitmq_user_permissions | |
| | | | `-- rabbitmqctl_spec.rb | |
| | | `-- rabbitmq_vhost | |
| | | `-- rabbitmqctl_spec.rb | |
| | `-- type | |
| | |-- rabbitmq_exchange_spec.rb | |
| | |-- rabbitmq_user_permissions_spec.rb | |
| | |-- rabbitmq_user_spec.rb | |
| | `-- rabbitmq_vhost_spec.rb | |
| |-- templates | |
| | |-- rabbitmq.config | |
| | |-- rabbitmq-env.conf.erb | |
| | |-- rabbit.pub.key | |
| | `-- README.markdown | |
| |-- tests | |
| | |-- full.pp | |
| | |-- permissions | |
| | | `-- add.pp | |
| | |-- plugin.pp | |
| | |-- repo | |
| | | `-- apt.pp | |
| | |-- server.pp | |
| | |-- service.pp | |
| | |-- site.pp | |
| | |-- user | |
| | | `-- add.pp | |
| | `-- vhosts | |
| | `-- add.pp | |
| `-- TODO | |
|-- rsync | |
| |-- CHANGELOG | |
| |-- files | |
| | `-- motd | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- get.pp | |
| | |-- init.pp | |
| | |-- repo.pp | |
| | |-- server | |
| | | `-- module.pp | |
| | `-- server.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.markdown | |
| |-- spec | |
| | |-- classes | |
| | | `-- server_spec.rb | |
| | |-- defines | |
| | | |-- get_spec.rb | |
| | | `-- server_module_spec.rb | |
| | |-- fixtures | |
| | | `-- manifests | |
| | | `-- site.pp | |
| | |-- spec_helper.rb | |
| | `-- spec.opts | |
| |-- templates | |
| | |-- header.erb | |
| | `-- module.erb | |
| `-- tests | |
| |-- init.pp | |
| |-- repo.pp | |
| `-- server_with_motd.pp | |
|-- ssh | |
| |-- files | |
| | |-- ssh_config | |
| | `-- sshd_config | |
| |-- lib | |
| | `-- puppet | |
| | `-- parser | |
| | `-- functions | |
| | `-- ipaddresses.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- client | |
| | | |-- config.pp | |
| | | `-- install.pp | |
| | |-- client.pp | |
| | |-- hostkeys.pp | |
| | |-- init.pp | |
| | |-- knownhosts.pp | |
| | |-- params.pp | |
| | |-- server | |
| | | |-- configline.pp | |
| | | |-- config.pp | |
| | | |-- install.pp | |
| | | `-- service.pp | |
| | `-- server.pp | |
| |-- Modulefile | |
| |-- README.markdown | |
| |-- spec | |
| | |-- spec_helper.rb | |
| | `-- spec.opts | |
| `-- tests | |
| `-- init.pp | |
|-- stdlib | |
| |-- CHANGELOG | |
| |-- CONTRIBUTING.md | |
| |-- Gemfile | |
| |-- lib | |
| | |-- facter | |
| | | |-- facter_dot_d.rb | |
| | | |-- pe_version.rb | |
| | | |-- puppet_vardir.rb | |
| | | |-- root_home.rb | |
| | | `-- util | |
| | | `-- puppet_settings.rb | |
| | `-- puppet | |
| | |-- parser | |
| | | `-- functions | |
| | | |-- abs.rb | |
| | | |-- any2array.rb | |
| | | |-- base64.rb | |
| | | |-- bool2num.rb | |
| | | |-- capitalize.rb | |
| | | |-- chomp.rb | |
| | | |-- chop.rb | |
| | | |-- concat.rb | |
| | | |-- count.rb | |
| | | |-- defined_with_params.rb | |
| | | |-- delete_at.rb | |
| | | |-- delete.rb | |
| | | |-- difference.rb | |
| | | |-- dirname.rb | |
| | | |-- downcase.rb | |
| | | |-- empty.rb | |
| | | |-- ensure_packages.rb | |
| | | |-- ensure_resource.rb | |
| | | |-- flatten.rb | |
| | | |-- floor.rb | |
| | | |-- fqdn_rotate.rb | |
| | | |-- get_module_path.rb | |
| | | |-- getparam.rb | |
| | | |-- getvar.rb | |
| | | |-- grep.rb | |
| | | |-- hash.rb | |
| | | |-- has_interface_with.rb | |
| | | |-- has_ip_address.rb | |
| | | |-- has_ip_network.rb | |
| | | |-- has_key.rb | |
| | | |-- intersection.rb | |
| | | |-- is_array.rb | |
| | | |-- is_domain_name.rb | |
| | | |-- is_float.rb | |
| | | |-- is_function_available.rb | |
| | | |-- is_hash.rb | |
| | | |-- is_integer.rb | |
| | | |-- is_ip_address.rb | |
| | | |-- is_mac_address.rb | |
| | | |-- is_numeric.rb | |
| | | |-- is_string.rb | |
| | | |-- join_keys_to_values.rb | |
| | | |-- join.rb | |
| | | |-- keys.rb | |
| | | |-- loadyaml.rb | |
| | | |-- lstrip.rb | |
| | | |-- max.rb | |
| | | |-- member.rb | |
| | | |-- merge.rb | |
| | | |-- min.rb | |
| | | |-- num2bool.rb | |
| | | |-- parsejson.rb | |
| | | |-- parseyaml.rb | |
| | | |-- pick.rb | |
| | | |-- prefix.rb | |
| | | |-- range.rb | |
| | | |-- reject.rb | |
| | | |-- reverse.rb | |
| | | |-- rstrip.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 | |
| | | |-- type.rb | |
| | | |-- union.rb | |
| | | |-- unique.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_ipv4_address.rb | |
| | | |-- validate_ipv6_address.rb | |
| | | |-- validate_re.rb | |
| | | |-- validate_slength.rb | |
| | | |-- validate_string.rb | |
| | | |-- values_at.rb | |
| | | |-- values.rb | |
| | | `-- zip.rb | |
| | |-- provider | |
| | | `-- file_line | |
| | | `-- ruby.rb | |
| | `-- type | |
| | |-- anchor.rb | |
| | `-- file_line.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- init.pp | |
| | `-- stages.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README_DEVELOPER.markdown | |
| |-- README.markdown | |
| |-- README_SPECS.markdown | |
| |-- RELEASE_PROCESS.markdown | |
| |-- spec | |
| | |-- classes | |
| | | `-- anchor_spec.rb | |
| | |-- functions | |
| | | |-- defined_with_params_spec.rb | |
| | | |-- ensure_packages_spec.rb | |
| | | |-- ensure_resource_spec.rb | |
| | | `-- getparam_spec.rb | |
| | |-- monkey_patches | |
| | | |-- alias_should_to_must.rb | |
| | | `-- publicize_methods.rb | |
| | |-- spec_helper.rb | |
| | |-- spec.opts | |
| | |-- unit | |
| | | |-- facter | |
| | | | |-- pe_required_facts_spec.rb | |
| | | | |-- pe_version_spec.rb | |
| | | | |-- root_home_spec.rb | |
| | | | `-- util | |
| | | | `-- puppet_settings_spec.rb | |
| | | `-- puppet | |
| | | |-- parser | |
| | | | `-- functions | |
| | | | |-- abs_spec.rb | |
| | | | |-- any2array_spec.rb | |
| | | | |-- base64_spec.rb | |
| | | | |-- bool2num_spec.rb | |
| | | | |-- capitalize_spec.rb | |
| | | | |-- chomp_spec.rb | |
| | | | |-- chop_spec.rb | |
| | | | |-- concat_spec.rb | |
| | | | |-- count_spec.rb | |
| | | | |-- delete_at_spec.rb | |
| | | | |-- delete_spec.rb | |
| | | | |-- difference_spec.rb | |
| | | | |-- dirname_spec.rb | |
| | | | |-- downcase_spec.rb | |
| | | | |-- empty_spec.rb | |
| | | | |-- flatten_spec.rb | |
| | | | |-- floor_spec.rb | |
| | | | |-- fqdn_rotate_spec.rb | |
| | | | |-- get_module_path_spec.rb | |
| | | | |-- getvar_spec.rb | |
| | | | |-- grep_spec.rb | |
| | | | |-- hash_spec.rb | |
| | | | |-- has_interface_with_spec.rb | |
| | | | |-- has_ip_address_spec.rb | |
| | | | |-- has_ip_network_spec.rb | |
| | | | |-- has_key_spec.rb | |
| | | | |-- intersection_spec.rb | |
| | | | |-- is_array_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 | |
| | | | |-- 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_spec.rb | |
| | | | |-- prefix_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 | |
| | | | |-- type_spec.rb | |
| | | | |-- union_spec.rb | |
| | | | |-- unique_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 | |
| | | |-- provider | |
| | | | `-- file_line | |
| | | | `-- ruby_spec.rb | |
| | | `-- type | |
| | | |-- anchor_spec.rb | |
| | | `-- file_line_spec.rb | |
| | `-- watchr.rb | |
| `-- tests | |
| |-- file_line.pp | |
| |-- has_interface_with.pp | |
| |-- has_ip_address.pp | |
| |-- has_ip_network.pp | |
| `-- init.pp | |
|-- swift | |
| |-- ext | |
| | |-- swift_keystone_test.rb | |
| | `-- swift.rb | |
| |-- files | |
| | |-- swift-account.conf.upstart | |
| | |-- swift-container.conf.upstart | |
| | |-- swift-container-sync.conf.upstart | |
| | |-- swift-object.conf.upstart | |
| | `-- swift_tester.rb | |
| |-- Gemfile | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- ring_account_device | |
| | | | `-- swift_ring_builder.rb | |
| | | |-- ring_container_device | |
| | | | `-- swift_ring_builder.rb | |
| | | |-- ring_object_device | |
| | | | `-- swift_ring_builder.rb | |
| | | `-- swift_ring_builder.rb | |
| | `-- type | |
| | |-- ring_account_device.rb | |
| | |-- ring_container_device.rb | |
| | `-- ring_object_device.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- auth_file.pp | |
| | |-- dispersion.pp | |
| | |-- init.pp | |
| | |-- keystone | |
| | | |-- auth.pp | |
| | | `-- dispersion.pp | |
| | |-- params.pp | |
| | |-- proxy | |
| | | |-- authtoken.pp | |
| | | |-- cache.pp | |
| | | |-- catch_errors.pp | |
| | | |-- ceilometer.pp | |
| | | |-- formpost.pp | |
| | | |-- healthcheck.pp | |
| | | |-- keystone.pp | |
| | | |-- proxy-logging.pp | |
| | | |-- ratelimit.pp | |
| | | |-- s3token.pp | |
| | | |-- staticweb.pp | |
| | | |-- swauth.pp | |
| | | |-- swift3.pp | |
| | | |-- tempauth.pp | |
| | | `-- tempurl.pp | |
| | |-- proxy.pp | |
| | |-- ringbuilder | |
| | | |-- create.pp | |
| | | `-- rebalance.pp | |
| | |-- ringbuilder.pp | |
| | |-- ringserver.pp | |
| | |-- ringsync.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 | |
| | |-- storage.pp | |
| | |-- test_file.pp | |
| | `-- xfs.pp | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.md | |
| |-- spec | |
| | |-- classes | |
| | | |-- swift_dispersion_spec.rb | |
| | | |-- swift_keystone_auth_spec.rb | |
| | | |-- swift_keystone_dispersion_spec.rb | |
| | | |-- swift_proxy_authtoken_spec.rb | |
| | | |-- swift_proxy_cache_spec.rb | |
| | | |-- swift_proxy_catch_errors_spec.rb | |
| | | |-- swift_proxy_ceilometer_spec.rb | |
| | | |-- swift_proxy_formpost_spec.rb | |
| | | |-- swift_proxy_healthcheck_spec.rb | |
| | | |-- swift_proxy_keystone_spec.rb | |
| | | |-- swift_proxy_ratelimit_spec.rb | |
| | | |-- swift_proxy_s3token_spec.rb | |
| | | |-- swift_proxy_spec.rb | |
| | | |-- swift_proxy_staticweb_spec.rb | |
| | | |-- swift_proxy_swauth_spec.rb | |
| | | |-- swift_proxy_swift3_spec.rb | |
| | | |-- swift_proxy_tempurl_spec.rb | |
| | | |-- swift_ringbuilder_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 | |
| | |-- spec_helper.rb | |
| | |-- spec.opts | |
| | `-- unit | |
| | `-- puppet | |
| | |-- provider | |
| | | `-- swift_ring_builder_spec.rb | |
| | `-- type | |
| | |-- ring_account_device_spec.rb | |
| | |-- ring_container_device_spec.rb | |
| | `-- ring_object_device_spec.rb | |
| |-- templates | |
| | |-- account-server.conf.erb | |
| | |-- container-server.conf.erb | |
| | |-- dispersion.conf.erb | |
| | |-- object-server.conf.erb | |
| | |-- proxy | |
| | | |-- authtoken.conf.erb | |
| | | |-- cache.conf.erb | |
| | | |-- catch_errors.conf.erb | |
| | | |-- ceilometer.conf.erb | |
| | | |-- formpost.conf.erb | |
| | | |-- healthcheck.conf.erb | |
| | | |-- keystone.conf.erb | |
| | | |-- proxy-logging.conf.erb | |
| | | |-- ratelimit.conf.erb | |
| | | |-- s3token.conf.erb | |
| | | |-- staticweb.conf.erb | |
| | | |-- swauth.conf.erb | |
| | | |-- swift3.conf.erb | |
| | | |-- tempauth.conf.erb | |
| | | `-- tempurl.conf.erb | |
| | |-- proxy-server.conf.erb | |
| | |-- recon.conf.erb | |
| | |-- rsyncd.conf.erb | |
| | |-- swift.conf.erb | |
| | `-- swift_keystone_test.erb | |
| `-- tests | |
| |-- all.pp | |
| `-- site.pp | |
|-- sysctl | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | `-- sysctl | |
| | | `-- parsed.rb | |
| | `-- type | |
| | `-- sysctl.rb | |
| |-- manifests | |
| | `-- value.pp | |
| |-- Modulefile | |
| `-- README | |
|-- vcsrepo | |
| |-- examples | |
| | |-- bzr | |
| | | |-- branch.pp | |
| | | `-- init_repo.pp | |
| | |-- cvs | |
| | | |-- local.pp | |
| | | `-- remote.pp | |
| | |-- git | |
| | | |-- bare_init.pp | |
| | | |-- clone.pp | |
| | | `-- working_copy_init.pp | |
| | |-- hg | |
| | | |-- clone.pp | |
| | | `-- init_repo.pp | |
| | `-- svn | |
| | |-- checkout.pp | |
| | `-- server.pp | |
| |-- Gemfile | |
| |-- Gemfile.lock | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- vcsrepo | |
| | | | |-- bzr.rb | |
| | | | |-- cvs.rb | |
| | | | |-- dummy.rb | |
| | | | |-- git.rb | |
| | | | |-- hg.rb | |
| | | | `-- svn.rb | |
| | | `-- vcsrepo.rb | |
| | `-- type | |
| | `-- vcsrepo.rb | |
| |-- LICENSE | |
| |-- Modulefile | |
| |-- Rakefile | |
| |-- README.BZR.markdown | |
| |-- README.CVS.markdown | |
| |-- README.GIT.markdown | |
| |-- README.HG.markdown | |
| |-- README.markdown | |
| |-- README.SVN.markdown | |
| `-- spec | |
| |-- fixtures | |
| | |-- bzr_version_info.txt | |
| | |-- git_branch_a.txt | |
| | |-- hg_parents.txt | |
| | |-- hg_tags.txt | |
| | `-- svn_info.txt | |
| |-- spec_helper.rb | |
| |-- spec.opts | |
| |-- support | |
| | |-- filesystem_helpers.rb | |
| | |-- fixture_helpers.rb | |
| | `-- provider_example_group.rb | |
| `-- unit | |
| `-- puppet | |
| |-- provider | |
| | `-- vcsrepo | |
| | |-- bzr_spec.rb | |
| | |-- cvs_spec.rb | |
| | |-- dummy_spec.rb | |
| | |-- git_spec.rb | |
| | |-- hg_spec.rb | |
| | `-- svn_spec.rb | |
| `-- type | |
| `-- README.markdown | |
|-- vswitch | |
| |-- lib | |
| | `-- puppet | |
| | |-- provider | |
| | | |-- vs_bridge | |
| | | | `-- ovs.rb | |
| | | `-- vs_port | |
| | | `-- ovs.rb | |
| | `-- type | |
| | |-- vs_bridge.rb | |
| | `-- vs_port.rb | |
| |-- LICENSE | |
| |-- manifests | |
| | |-- init.pp | |
| | |-- ovs.pp | |
| | `-- params.pp | |
| |-- Modulefile | |
| |-- Puppetfile | |
| |-- Rakefile | |
| |-- README.md | |
| `-- spec | |
| |-- classes | |
| | `-- vswitch_ovs_spec.rb | |
| `-- spec_helper.rb | |
`-- xinetd | |
|-- CHANGELOG | |
|-- files | |
| `-- xinetd.conf | |
|-- LICENSE | |
|-- manifests | |
| |-- init.pp | |
| `-- service.pp | |
|-- Modulefile | |
|-- Rakefile | |
|-- README | |
|-- spec | |
| |-- classes | |
| | `-- xinetd_init_spec.rb | |
| |-- defines | |
| | `-- xinetd_service_spec.rb | |
| |-- fixtures | |
| | `-- manifests | |
| | `-- site.pp | |
| |-- spec_helper.rb | |
| `-- spec.opts | |
|-- templates | |
| `-- service.erb | |
`-- tests | |
`-- init.pp | |
395 directories, 1227 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment