├── .gitignore ├── .travis.yml ├── COPYING ├── README.md ├── Vagrantfile ├── data └── README.md ├── libs ├── class.Config.php ├── class.FileDataManager.php ├── class.FixtureBuilder.php ├── class.JSONDecoder.php ├── class.Loader.php ├── class.Profiler.php ├── class.Router.php ├── class.Serializer.php ├── class.Session.php ├── class.SessionCache.php ├── class.Utils.php ├── class.ViewManager.php ├── config.sample.inc.php ├── controller │ ├── class.AuthController.php │ ├── class.Controller.php │ ├── class.IsoscelesExampleAuthController.php │ ├── class.IsoscelesExampleController.php │ ├── class.IsoscelesExampleJSONCacheController.php │ ├── class.IsoscelesInternalServerErrorController.php │ ├── class.IsoscelesPageNotFoundController.php │ ├── class.IsoscelesSignInController.php │ └── class.IsoscelesSignOutController.php ├── dao │ ├── class.DAOFactory.php │ ├── class.PDODAO.php │ ├── class.TestFauxDAO.php │ ├── class.TestMySQLDAO.php │ └── interface.TestDAO.php ├── exceptions │ ├── class.ConfigurationException.php │ ├── class.FixtureBuilderException.php │ ├── class.JSONDecoderException.php │ └── class.SerializerException.php ├── extlibs │ └── Smarty-3.1.21 │ │ ├── COPYING.lib │ │ ├── README │ │ ├── SMARTY_2_BC_NOTES.txt │ │ ├── SMARTY_3.0_BC_NOTES.txt │ │ ├── SMARTY_3.1_NOTES.txt │ │ ├── change_log.txt │ │ ├── demo │ │ ├── configs │ │ │ └── test.conf │ │ ├── index.php │ │ ├── plugins │ │ │ ├── cacheresource.apc.php │ │ │ ├── cacheresource.memcache.php │ │ │ ├── cacheresource.mysql.php │ │ │ ├── resource.extendsall.php │ │ │ ├── resource.mysql.php │ │ │ └── resource.mysqls.php │ │ └── templates │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ └── index.tpl │ │ └── libs │ │ ├── Smarty.class.php │ │ ├── SmartyBC.class.php │ │ ├── debug.tpl │ │ ├── plugins │ │ ├── block.textformat.php │ │ ├── function.counter.php │ │ ├── function.cycle.php │ │ ├── function.fetch.php │ │ ├── function.html_checkboxes.php │ │ ├── function.html_image.php │ │ ├── function.html_options.php │ │ ├── function.html_radios.php │ │ ├── function.html_select_date.php │ │ ├── function.html_select_time.php │ │ ├── function.html_table.php │ │ ├── function.mailto.php │ │ ├── function.math.php │ │ ├── modifier.capitalize.php │ │ ├── modifier.date_format.php │ │ ├── modifier.debug_print_var.php │ │ ├── modifier.escape.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.replace.php │ │ ├── modifier.spacify.php │ │ ├── modifier.truncate.php │ │ ├── modifiercompiler.cat.php │ │ ├── modifiercompiler.count_characters.php │ │ ├── modifiercompiler.count_paragraphs.php │ │ ├── modifiercompiler.count_sentences.php │ │ ├── modifiercompiler.count_words.php │ │ ├── modifiercompiler.default.php │ │ ├── modifiercompiler.escape.php │ │ ├── modifiercompiler.from_charset.php │ │ ├── modifiercompiler.indent.php │ │ ├── modifiercompiler.lower.php │ │ ├── modifiercompiler.noprint.php │ │ ├── modifiercompiler.string_format.php │ │ ├── modifiercompiler.strip.php │ │ ├── modifiercompiler.strip_tags.php │ │ ├── modifiercompiler.to_charset.php │ │ ├── modifiercompiler.unescape.php │ │ ├── modifiercompiler.upper.php │ │ ├── modifiercompiler.wordwrap.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── shared.escape_special_chars.php │ │ ├── shared.literal_compiler_param.php │ │ ├── shared.make_timestamp.php │ │ ├── shared.mb_str_replace.php │ │ ├── shared.mb_unicode.php │ │ ├── shared.mb_wordwrap.php │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ ├── smarty_cacheresource.php │ │ ├── smarty_cacheresource_custom.php │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ ├── smarty_config_source.php │ │ ├── smarty_internal_cacheresource_file.php │ │ ├── smarty_internal_compile_append.php │ │ ├── smarty_internal_compile_assign.php │ │ ├── smarty_internal_compile_block.php │ │ ├── smarty_internal_compile_break.php │ │ ├── smarty_internal_compile_call.php │ │ ├── smarty_internal_compile_capture.php │ │ ├── smarty_internal_compile_config_load.php │ │ ├── smarty_internal_compile_continue.php │ │ ├── smarty_internal_compile_debug.php │ │ ├── smarty_internal_compile_eval.php │ │ ├── smarty_internal_compile_extends.php │ │ ├── smarty_internal_compile_for.php │ │ ├── smarty_internal_compile_foreach.php │ │ ├── smarty_internal_compile_function.php │ │ ├── smarty_internal_compile_if.php │ │ ├── smarty_internal_compile_include.php │ │ ├── smarty_internal_compile_include_php.php │ │ ├── smarty_internal_compile_insert.php │ │ ├── smarty_internal_compile_ldelim.php │ │ ├── smarty_internal_compile_nocache.php │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ ├── smarty_internal_compile_private_modifier.php │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ ├── smarty_internal_compile_private_object_function.php │ │ ├── smarty_internal_compile_private_print_expression.php │ │ ├── smarty_internal_compile_private_registered_block.php │ │ ├── smarty_internal_compile_private_registered_function.php │ │ ├── smarty_internal_compile_private_special_variable.php │ │ ├── smarty_internal_compile_rdelim.php │ │ ├── smarty_internal_compile_section.php │ │ ├── smarty_internal_compile_setfilter.php │ │ ├── smarty_internal_compile_while.php │ │ ├── smarty_internal_compilebase.php │ │ ├── smarty_internal_config.php │ │ ├── smarty_internal_config_file_compiler.php │ │ ├── smarty_internal_configfilelexer.php │ │ ├── smarty_internal_configfileparser.php │ │ ├── smarty_internal_data.php │ │ ├── smarty_internal_debug.php │ │ ├── smarty_internal_filter_handler.php │ │ ├── smarty_internal_function_call_handler.php │ │ ├── smarty_internal_get_include_path.php │ │ ├── smarty_internal_nocache_insert.php │ │ ├── smarty_internal_parsetree.php │ │ ├── smarty_internal_resource_eval.php │ │ ├── smarty_internal_resource_extends.php │ │ ├── smarty_internal_resource_file.php │ │ ├── smarty_internal_resource_php.php │ │ ├── smarty_internal_resource_registered.php │ │ ├── smarty_internal_resource_stream.php │ │ ├── smarty_internal_resource_string.php │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ ├── smarty_internal_template.php │ │ ├── smarty_internal_templatebase.php │ │ ├── smarty_internal_templatecompilerbase.php │ │ ├── smarty_internal_templatelexer.php │ │ ├── smarty_internal_templateparser.php │ │ ├── smarty_internal_utility.php │ │ ├── smarty_internal_write_file.php │ │ ├── smarty_resource.php │ │ ├── smarty_resource_custom.php │ │ ├── smarty_resource_recompiled.php │ │ ├── smarty_resource_uncompiled.php │ │ └── smarty_security.php ├── model │ └── class.TestData.php └── view │ ├── _isosceles.footer.tpl │ ├── _isosceles.header.tpl │ ├── _isosceles.profiler.json.tpl │ ├── _isosceles.profiler.tpl │ ├── _isosceles.usermessage.tpl │ ├── isosceles-example-authcontroller.tpl │ ├── isosceles-example-controller.tpl │ ├── isosceles-page-not-found-controller.tpl │ ├── isosceles-signin-controller.tpl │ ├── isosceles.500-perm.tpl │ ├── isosceles.500.json.tpl │ ├── isosceles.500.tpl │ ├── isosceles.500.txt.tpl │ ├── isosceles.json.tpl │ └── plugins │ └── modifier.filter_xss.php ├── puphpet ├── config.yaml ├── files │ ├── EXEC-README.txt │ ├── dot │ │ ├── .bash_aliases │ │ ├── .bash_git │ │ ├── .bash_profile │ │ ├── .bashrc │ │ ├── .git-completion.bash │ │ ├── .git-prompt.sh │ │ ├── .vimrc │ │ ├── README.txt │ │ └── ssh │ │ │ └── insecure_private_key │ ├── exec-always-unprivileged │ │ └── empty │ ├── exec-always │ │ └── empty │ ├── exec-once-unprivileged │ │ └── empty │ ├── exec-once │ │ ├── empty │ │ └── isosceles.sh │ ├── exec-preprovision │ │ └── empty │ ├── isosceles-setup │ │ └── configs │ │ │ ├── config.inc.php │ │ │ └── config.tests.inc.php │ ├── startup-always-unprivileged │ │ └── empty │ ├── startup-always │ │ └── empty │ ├── startup-once-unprivileged │ │ └── empty │ └── startup-once │ │ └── empty ├── puppet │ ├── Puppetfile │ ├── Puppetfile.lock │ ├── hiera.yaml │ ├── manifests │ │ ├── Apache.pp │ │ ├── Beanstalkd.pp │ │ ├── Blackfire.pp │ │ ├── Cron.pp │ │ ├── Drush.pp │ │ ├── ElasticSearch.pp │ │ ├── Firewall.pp │ │ ├── Hhvm.pp │ │ ├── Locale.pp │ │ ├── MailHog.pp │ │ ├── MariaDb.pp │ │ ├── MongoDb.pp │ │ ├── Mysql.pp │ │ ├── Nginx.pp │ │ ├── NodeJs.pp │ │ ├── Php.pp │ │ ├── Postgresql.pp │ │ ├── Python.pp │ │ ├── RabbitMQ.pp │ │ ├── Redis.pp │ │ ├── Ruby.pp │ │ ├── Server.pp │ │ ├── Solr.pp │ │ ├── Sqlite.pp │ │ ├── UsersGroups.pp │ │ ├── WPCli.pp │ │ ├── Xdebug.pp │ │ ├── Xhprof.pp │ │ └── site.pp │ └── modules │ │ ├── LICENSE │ │ ├── README.md │ │ ├── apache │ │ ├── .fixtures.yml │ │ ├── .geppetto-rc.json │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .puppet-lint.rc │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.passenger.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 │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── bool2httpd.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 │ │ ├── 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-70-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ │ ├── debian-73-i386.yml │ │ │ │ │ ├── debian-73-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 │ │ │ │ ├── unsupported_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 │ │ │ │ │ ├── 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 │ │ │ │ ├── balancermember_spec.rb │ │ │ │ ├── custom_config_spec.rb │ │ │ │ ├── fastcgi_server_spec.rb │ │ │ │ ├── mod_spec.rb │ │ │ │ ├── modsec_link_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 │ │ │ │ ├── provider │ │ │ │ └── a2mod │ │ │ │ │ └── gentoo_spec.rb │ │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── bool2httpd_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 │ │ │ ├── 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 │ │ │ ├── unixd_fcgid.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 │ │ │ ├── _limits.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 │ │ │ ├── _suexec.erb │ │ │ ├── _suphp.erb │ │ │ └── _wsgi.erb │ │ ├── apt │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .puppet-lint.rc │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── examples │ │ │ ├── backports.pp │ │ │ ├── builddep.pp │ │ │ ├── debian_testing.pp │ │ │ ├── debian_unstable.pp │ │ │ ├── disable_keys.pp │ │ │ ├── fancy_progress.pp │ │ │ ├── force.pp │ │ │ ├── hold.pp │ │ │ ├── key.pp │ │ │ ├── pin.pp │ │ │ ├── ppa.pp │ │ │ ├── release.pp │ │ │ ├── source.pp │ │ │ └── unattended_upgrades.pp │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── apt_reboot_required.rb │ │ │ │ ├── apt_update_last_success.rb │ │ │ │ └── apt_updates.rb │ │ │ ├── puppet │ │ │ │ ├── provider │ │ │ │ │ └── apt_key │ │ │ │ │ │ └── apt_key.rb │ │ │ │ └── type │ │ │ │ │ └── apt_key.rb │ │ │ └── puppet_x │ │ │ │ └── apt_key │ │ │ │ └── patch_openuri.rb │ │ ├── manifests │ │ │ ├── backports.pp │ │ │ ├── conf.pp │ │ │ ├── init.pp │ │ │ ├── key.pp │ │ │ ├── params.pp │ │ │ ├── pin.pp │ │ │ ├── ppa.pp │ │ │ ├── setting.pp │ │ │ ├── source.pp │ │ │ └── update.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── apt_key_provider_spec.rb │ │ │ │ ├── apt_spec.rb │ │ │ │ ├── class_spec.rb │ │ │ │ └── nodesets │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ ├── classes │ │ │ │ ├── apt_backports_spec.rb │ │ │ │ ├── apt_spec.rb │ │ │ │ ├── apt_update_spec.rb │ │ │ │ └── params_spec.rb │ │ │ ├── defines │ │ │ │ ├── conf_spec.rb │ │ │ │ ├── key_compat_spec.rb │ │ │ │ ├── key_spec.rb │ │ │ │ ├── pin_spec.rb │ │ │ │ ├── ppa_spec.rb │ │ │ │ ├── setting_spec.rb │ │ │ │ ├── source_compat_spec.rb │ │ │ │ └── source_spec.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ ├── facter │ │ │ │ ├── apt_has_updates_spec.rb │ │ │ │ ├── apt_package_updates_spec.rb │ │ │ │ ├── apt_reboot_required_spec.rb │ │ │ │ ├── apt_security_updates_spec.rb │ │ │ │ ├── apt_update_last_success_spec.rb │ │ │ │ └── apt_updates_spec.rb │ │ │ │ └── puppet │ │ │ │ └── type │ │ │ │ └── apt_key_spec.rb │ │ └── templates │ │ │ ├── 15update-stamp.erb │ │ │ ├── _conf_header.erb │ │ │ ├── _header.erb │ │ │ ├── conf.erb │ │ │ ├── pin.pref.erb │ │ │ ├── proxy.erb │ │ │ └── source.list.erb │ │ ├── beanstalkd │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ └── init.pp │ │ ├── run-tests.sh │ │ ├── spec │ │ │ ├── defines │ │ │ │ └── config_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── manifests │ │ │ │ │ └── site.pp │ │ │ │ └── modules │ │ │ │ │ └── beanstalkd │ │ │ │ │ ├── manifests │ │ │ │ │ └── init.pp │ │ │ │ │ └── templates │ │ │ │ │ ├── debian │ │ │ │ │ └── beanstalkd.erb │ │ │ │ │ └── redhat │ │ │ │ │ └── beanstalkd_sysconfig.erb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ ├── debian │ │ │ └── beanstalkd.erb │ │ │ └── redhat │ │ │ └── beanstalkd_sysconfig.erb │ │ ├── blackfire │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .pmtignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── agent.pp │ │ │ ├── agent │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── service.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ ├── php.pp │ │ │ ├── php │ │ │ │ ├── config.pp │ │ │ │ └── install.pp │ │ │ └── repo.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── agent_spec.rb │ │ │ │ └── nodesets │ │ │ │ │ ├── centos-66-x64.yml │ │ │ │ │ ├── centos-70-x64.yml │ │ │ │ │ ├── debian-60-x64.yml │ │ │ │ │ ├── debian-78-x64.yml │ │ │ │ │ ├── debian-80-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── ubuntu-server-1004-x64.yml │ │ │ │ │ ├── ubuntu-server-1204-x64.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ ├── classes │ │ │ │ └── init_spec.rb │ │ │ ├── spec_helper.rb │ │ │ └── spec_helper_acceptance.rb │ │ └── tests │ │ │ └── init.pp │ │ ├── composer │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── Vagrantfile │ │ ├── lib │ │ │ └── facter │ │ │ │ └── composer_home.rb │ │ ├── manifests │ │ │ ├── exec.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ ├── project.pp │ │ │ ├── project_factory.pp │ │ │ └── selfupdate.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── composer_project_spec.rb │ │ │ │ └── nodesets │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ ├── classes │ │ │ │ ├── composer_params_spec.rb │ │ │ │ └── composer_spec.rb │ │ │ ├── defines │ │ │ │ ├── composer_exec_spec.rb │ │ │ │ ├── composer_project_spec.rb │ │ │ │ └── composer_selfupdate_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── manifests │ │ │ │ │ ├── site.pp │ │ │ │ │ └── vagrant.pp │ │ │ │ └── puppet │ │ │ │ │ └── hiera.yaml │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ └── spec_helper_acceptance.rb │ │ ├── templates │ │ │ ├── install.erb │ │ │ ├── require.erb │ │ │ └── update.erb │ │ └── tests │ │ │ ├── init.pp │ │ │ └── project.pp │ │ ├── concat │ │ ├── .fixtures.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ ├── concatfragments.rb │ │ │ └── concatfragments.sh │ │ ├── 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 │ │ │ │ ├── symbolic_name_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 │ │ ├── datacat │ │ ├── Changes │ │ ├── Gemfile │ │ ├── NOTES.md │ │ ├── README.md │ │ ├── Rakefile │ │ ├── TODO.md │ │ ├── checksums.json │ │ ├── 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 │ │ │ │ └── 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 │ │ │ │ ├── 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.RedHat.erb │ │ │ │ └── elasticsearch.systemd.erb │ │ │ └── sysconfig │ │ │ │ └── defaults.erb │ │ │ └── usr │ │ │ └── lib │ │ │ └── tmpfiles.d │ │ │ └── elasticsearch.conf.erb │ │ ├── epel │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── checksums.json │ │ ├── files │ │ │ ├── RPM-GPG-KEY-EPEL-5 │ │ │ ├── RPM-GPG-KEY-EPEL-6 │ │ │ └── RPM-GPG-KEY-EPEL-7 │ │ ├── manifests │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ └── rpm_gpg_key.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── epel_spec.rb │ │ │ │ ├── shared_base.rb │ │ │ │ ├── shared_debuginfo.rb │ │ │ │ ├── shared_gpgkey.rb │ │ │ │ ├── shared_source.rb │ │ │ │ ├── shared_testing.rb │ │ │ │ ├── shared_testing_debuginfo.rb │ │ │ │ └── shared_testing_source.rb │ │ │ ├── defines │ │ │ │ └── rpm_gpg_key_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_system.rb │ │ │ └── system │ │ │ │ ├── basic_spec.rb │ │ │ │ └── usage_spec.rb │ │ └── tests │ │ │ └── init.pp │ │ ├── erlang │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .rspec │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ └── repo │ │ │ │ ├── apt.pp │ │ │ │ └── yum.pp │ │ ├── metadata.json │ │ └── spec │ │ │ ├── classes │ │ │ └── erlang_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_system.rb │ │ │ └── system │ │ │ └── erlang_spec.rb │ │ ├── firewall │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── 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 │ │ │ │ └── redhat.pp │ │ ├── metadata.json │ │ └── spec │ │ │ ├── acceptance │ │ │ ├── change_source_spec.rb │ │ │ ├── class_spec.rb │ │ │ ├── connlimit_spec.rb │ │ │ ├── connmark_spec.rb │ │ │ ├── firewall_spec.rb │ │ │ ├── firewallchain_spec.rb │ │ │ ├── ip6_fragment_spec.rb │ │ │ ├── isfragment_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 │ │ │ │ ├── debian-607-x64.yml │ │ │ │ ├── debian-70rc1-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 │ │ │ ├── params_spec.rb │ │ │ ├── purge_spec.rb │ │ │ ├── resource_cmd_spec.rb │ │ │ ├── rules_spec.rb │ │ │ ├── socket_spec.rb │ │ │ └── standard_usage_spec.rb │ │ │ ├── fixtures │ │ │ ├── ip6tables │ │ │ │ └── conversion_hash.rb │ │ │ └── iptables │ │ │ │ └── conversion_hash.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ ├── classes │ │ │ ├── firewall_linux_archlinux_spec.rb │ │ │ ├── firewall_linux_debian_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 │ │ │ ├── iptables_chain_spec.rb │ │ │ └── iptables_spec.rb │ │ │ ├── type │ │ │ ├── firewall_spec.rb │ │ │ └── firewallchain_spec.rb │ │ │ └── util │ │ │ ├── firewall_spec.rb │ │ │ └── ipcidr_spec.rb │ │ ├── git │ │ ├── .fixtures.yml │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ └── subtree │ │ │ │ └── bash_completion.sh │ │ ├── lib │ │ │ └── facter │ │ │ │ ├── git_exec_path.rb │ │ │ │ └── git_version.rb │ │ ├── manifests │ │ │ ├── gitosis.pp │ │ │ ├── init.pp │ │ │ └── subtree.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── git_subtree_spec.rb │ │ │ └── spec_helper.rb │ │ └── tests │ │ │ ├── gitosis.pp │ │ │ └── init.pp │ │ ├── gnupg │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ ├── broken.public.key │ │ │ ├── random.key │ │ │ ├── random.private.key │ │ │ └── random.public.key │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── gnupg_command.rb │ │ │ │ └── gnupg_installed.rb │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ └── gnupg_key │ │ │ │ │ └── gnupg.rb │ │ │ │ └── type │ │ │ │ └── gnupg_key.rb │ │ ├── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── class_spec.rb │ │ │ │ ├── gnupg_key_install_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-70rc1-x64.yml │ │ │ │ │ ├── debian-73-i386.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ │ │ ├── ubuntu-server-1310-x64.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ ├── classes │ │ │ │ └── gnupg_init_spec.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ ├── spec_helper_system.rb │ │ │ ├── system │ │ │ │ ├── gnupg_key_install_spec.rb │ │ │ │ └── install_spec.rb │ │ │ └── unit │ │ │ │ └── puppet │ │ │ │ └── type │ │ │ │ └── gnupg_key_spec.rb │ │ └── tests │ │ │ ├── gnupg_key.pp │ │ │ └── init.pp │ │ ├── inifile │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── 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 │ │ ├── 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 │ │ │ │ └── inherit_test1_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── modules │ │ │ │ │ ├── inherit_ini_setting │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── puppet │ │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── inherit_ini_setting │ │ │ │ │ │ │ │ └── ini_setting.rb │ │ │ │ │ │ │ └── type │ │ │ │ │ │ │ └── inherit_ini_setting.rb │ │ │ │ │ └── inherit_test1 │ │ │ │ │ │ └── manifests │ │ │ │ │ │ └── init.pp │ │ │ │ └── tmp │ │ │ │ │ └── .empty │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── ini_setting │ │ │ │ │ ├── inheritance_spec.rb │ │ │ │ │ └── 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 │ │ ├── java │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .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 │ │ │ ├── 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 │ │ ├── locales │ │ ├── .gitignore │ │ ├── README.md │ │ ├── manifests │ │ │ ├── init.pp │ │ │ └── params.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── spec.opts │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ ├── locale.erb │ │ │ └── locale.gen.erb │ │ └── tests │ │ │ └── init.pp │ │ ├── mongodb │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── 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_system.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 │ │ ├── monitor │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── checksums.json │ │ ├── manifests │ │ │ ├── mount.pp │ │ │ ├── plugin.pp │ │ │ ├── port.pp │ │ │ ├── process.pp │ │ │ └── url.pp │ │ └── metadata.json │ │ ├── mysql │ │ ├── .fixtures.yml │ │ ├── .geppetto-rc.json │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── 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 │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── mysql_deepmerge.rb │ │ │ │ │ ├── mysql_dirname.rb │ │ │ │ │ ├── mysql_password.rb │ │ │ │ │ └── mysql_strip_hash.rb │ │ │ │ ├── provider │ │ │ │ ├── mysql.rb │ │ │ │ ├── mysql_database │ │ │ │ │ └── mysql.rb │ │ │ │ ├── mysql_grant │ │ │ │ │ └── mysql.rb │ │ │ │ ├── mysql_plugin │ │ │ │ │ └── mysql.rb │ │ │ │ └── mysql_user │ │ │ │ │ └── mysql.rb │ │ │ │ └── type │ │ │ │ ├── mysql_database.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 │ │ │ │ ├── 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 │ │ │ └── unit │ │ │ │ └── puppet │ │ │ │ ├── functions │ │ │ │ ├── mysql_deepmerge_spec.rb │ │ │ │ └── mysql_password_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 │ │ ├── nginx │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── .travis │ │ │ ├── Gemfile │ │ │ └── Rakefile │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── Puppetfile │ │ ├── Puppetfile.lock │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── composer.json │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── package.pp │ │ │ ├── package │ │ │ │ ├── archlinux.pp │ │ │ │ ├── debian.pp │ │ │ │ ├── freebsd.pp │ │ │ │ ├── redhat.pp │ │ │ │ ├── solaris.pp │ │ │ │ └── suse.pp │ │ │ ├── params.pp │ │ │ ├── resource │ │ │ │ ├── geo.pp │ │ │ │ ├── location.pp │ │ │ │ ├── mailhost.pp │ │ │ │ ├── map.pp │ │ │ │ ├── upstream.pp │ │ │ │ ├── upstream │ │ │ │ │ └── member.pp │ │ │ │ └── vhost.pp │ │ │ └── service.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── config_spec.rb │ │ │ │ ├── nginx_spec.rb │ │ │ │ ├── package_spec.rb │ │ │ │ ├── params_spec.rb │ │ │ │ └── service_spec.rb │ │ │ ├── defines │ │ │ │ ├── resource_geo_spec.rb │ │ │ │ ├── resource_location_spec.rb │ │ │ │ ├── resource_mailhost_spec.rb │ │ │ │ ├── resource_map_spec.rb │ │ │ │ ├── resource_upstream_spec.rb │ │ │ │ └── resource_vhost_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_system.rb │ │ │ └── system │ │ │ │ ├── basic_spec.rb │ │ │ │ ├── class_spec.rb │ │ │ │ ├── nginx_mail_spec.rb │ │ │ │ ├── nginx_proxy_spec.rb │ │ │ │ └── nginx_vhost_spec.rb │ │ ├── templates │ │ │ ├── conf.d │ │ │ │ ├── geo.erb │ │ │ │ ├── map.erb │ │ │ │ ├── nginx.conf.erb │ │ │ │ ├── proxy.conf.erb │ │ │ │ ├── upstream_header.erb │ │ │ │ ├── upstream_member.erb │ │ │ │ └── upstream_members.erb │ │ │ ├── mailhost │ │ │ │ ├── mailhost.erb │ │ │ │ └── mailhost_ssl.erb │ │ │ └── vhost │ │ │ │ ├── fastcgi_params.erb │ │ │ │ ├── location_footer.erb │ │ │ │ ├── location_header.erb │ │ │ │ ├── locations │ │ │ │ ├── alias.erb │ │ │ │ ├── directory.erb │ │ │ │ ├── empty.erb │ │ │ │ ├── fastcgi.erb │ │ │ │ ├── proxy.erb │ │ │ │ ├── set.erb │ │ │ │ └── stub_status.erb │ │ │ │ ├── vhost_footer.erb │ │ │ │ ├── vhost_header.erb │ │ │ │ ├── vhost_ssl_footer.erb │ │ │ │ └── vhost_ssl_header.erb │ │ └── tests │ │ │ ├── init.pp │ │ │ ├── location_alias.pp │ │ │ ├── upstream.pp │ │ │ ├── vhost.pp │ │ │ └── vhost_ssl.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 │ │ ├── php │ │ ├── .fixtures.yml │ │ ├── .gemfile │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ └── facter │ │ │ │ ├── php_fact_extension_dir.rb │ │ │ │ └── php_fact_version.rb │ │ ├── manifests │ │ │ ├── augeas.pp │ │ │ ├── conf.pp │ │ │ ├── devel.pp │ │ │ ├── ini.pp │ │ │ ├── init.pp │ │ │ ├── mod.pp │ │ │ ├── module.pp │ │ │ ├── params.pp │ │ │ ├── pear.pp │ │ │ ├── pear │ │ │ │ ├── config.pp │ │ │ │ └── module.pp │ │ │ ├── pecl │ │ │ │ ├── config.pp │ │ │ │ └── module.pp │ │ │ └── spec.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── php_spec.rb │ │ │ ├── defines │ │ │ │ ├── php_module_spec.rb │ │ │ │ └── php_pear_module_spec.rb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ ├── extra-ini.erb │ │ │ └── spec.erb │ │ ├── postgresql │ │ ├── .fixtures.yml │ │ ├── .geppetto-rc.json │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ ├── RPM-GPG-KEY-PGDG │ │ │ └── validate_postgresql_connection.sh │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── postgresql_acls_to_resources_hash.rb │ │ │ │ │ ├── postgresql_escape.rb │ │ │ │ │ └── postgresql_password.rb │ │ │ │ ├── provider │ │ │ │ ├── postgresql_conf │ │ │ │ │ └── parsed.rb │ │ │ │ ├── postgresql_psql │ │ │ │ │ └── ruby.rb │ │ │ │ └── postgresql_replication_slot │ │ │ │ │ └── ruby.rb │ │ │ │ └── type │ │ │ │ ├── postgresql_conf.rb │ │ │ │ ├── postgresql_psql.rb │ │ │ │ └── postgresql_replication_slot.rb │ │ ├── manifests │ │ │ ├── client.pp │ │ │ ├── globals.pp │ │ │ ├── lib │ │ │ │ ├── devel.pp │ │ │ │ ├── docs.pp │ │ │ │ ├── java.pp │ │ │ │ ├── perl.pp │ │ │ │ └── python.pp │ │ │ ├── params.pp │ │ │ ├── repo.pp │ │ │ ├── repo │ │ │ │ ├── apt_postgresql_org.pp │ │ │ │ └── yum_postgresql_org.pp │ │ │ ├── server.pp │ │ │ ├── server │ │ │ │ ├── config.pp │ │ │ │ ├── config_entry.pp │ │ │ │ ├── contrib.pp │ │ │ │ ├── database.pp │ │ │ │ ├── database_grant.pp │ │ │ │ ├── db.pp │ │ │ │ ├── extension.pp │ │ │ │ ├── grant.pp │ │ │ │ ├── initdb.pp │ │ │ │ ├── install.pp │ │ │ │ ├── passwd.pp │ │ │ │ ├── pg_hba_rule.pp │ │ │ │ ├── pg_ident_rule.pp │ │ │ │ ├── plperl.pp │ │ │ │ ├── plpython.pp │ │ │ │ ├── postgis.pp │ │ │ │ ├── recovery.pp │ │ │ │ ├── reload.pp │ │ │ │ ├── role.pp │ │ │ │ ├── schema.pp │ │ │ │ ├── service.pp │ │ │ │ ├── table_grant.pp │ │ │ │ └── tablespace.pp │ │ │ └── validate_db_connection.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── 00-utf8_encoding_spec.rb │ │ │ │ ├── alternative_port_spec.rb │ │ │ │ ├── db_spec.rb │ │ │ │ ├── default_parameters_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 │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ │ ├── postgresql_psql_spec.rb │ │ │ │ ├── server │ │ │ │ │ ├── recovery_spec.rb │ │ │ │ │ └── schema_spec.rb │ │ │ │ └── z_alternative_pgdata_spec.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ ├── classes │ │ │ │ ├── client_spec.rb │ │ │ │ ├── globals_spec.rb │ │ │ │ ├── lib │ │ │ │ │ ├── devel_spec.rb │ │ │ │ │ ├── java_spec.rb │ │ │ │ │ ├── perl_spec.rb │ │ │ │ │ ├── pgdocs_spec.rb │ │ │ │ │ └── python_spec.rb │ │ │ │ ├── params_spec.rb │ │ │ │ ├── repo_spec.rb │ │ │ │ ├── server │ │ │ │ │ ├── config_spec.rb │ │ │ │ │ ├── contrib_spec.rb │ │ │ │ │ ├── initdb_spec.rb │ │ │ │ │ ├── plperl_spec.rb │ │ │ │ │ ├── plpython_spec.rb │ │ │ │ │ └── postgis_spec.rb │ │ │ │ └── server_spec.rb │ │ │ │ ├── defines │ │ │ │ ├── server │ │ │ │ │ ├── config_entry_spec.rb │ │ │ │ │ ├── database_grant_spec.rb │ │ │ │ │ ├── database_spec.rb │ │ │ │ │ ├── db_spec.rb │ │ │ │ │ ├── extension_spec.rb │ │ │ │ │ ├── grant_spec.rb │ │ │ │ │ ├── pg_hba_rule_spec.rb │ │ │ │ │ ├── pg_ident_rule_spec.rb │ │ │ │ │ ├── recovery_spec.rb │ │ │ │ │ ├── role_spec.rb │ │ │ │ │ ├── schema_spec.rb │ │ │ │ │ ├── table_grant_spec.rb │ │ │ │ │ └── tablespace_spec.rb │ │ │ │ └── validate_db_connection_spec.rb │ │ │ │ ├── functions │ │ │ │ ├── postgresql_acls_to_resources_hash_spec.rb │ │ │ │ ├── postgresql_escape_spec.rb │ │ │ │ └── postgresql_password_spec.rb │ │ │ │ ├── provider │ │ │ │ └── postgresql_conf │ │ │ │ │ └── parsed_spec.rb │ │ │ │ ├── puppet │ │ │ │ ├── provider │ │ │ │ │ ├── postgresql_psql │ │ │ │ │ │ └── ruby_spec.rb │ │ │ │ │ └── postgresql_replication_slot │ │ │ │ │ │ └── ruby_spec.rb │ │ │ │ └── type │ │ │ │ │ ├── postgresql_psql_spec.rb │ │ │ │ │ └── postgresql_replication_slot_spec.rb │ │ │ │ └── type │ │ │ │ └── postgresql_conf_spec.rb │ │ └── templates │ │ │ ├── pg_hba_rule.conf │ │ │ ├── pg_ident_rule.conf │ │ │ ├── recovery.conf │ │ │ └── systemd-override.erb │ │ ├── puphpet │ │ ├── LICENSE │ │ ├── README.md │ │ ├── files │ │ │ ├── php7 │ │ │ │ ├── php-fpm.conf │ │ │ │ ├── php7-fpm │ │ │ │ ├── php7-fpm-checkconf │ │ │ │ └── www.conf │ │ │ ├── webserver_landing.html │ │ │ └── xdebug_cli_alias.erb │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── access.rb │ │ │ │ │ ├── array_true.rb │ │ │ │ │ ├── deep_merge.rb │ │ │ │ │ ├── hash_eval.rb │ │ │ │ │ ├── hash_key_equals.rb │ │ │ │ │ ├── is_dir.rb │ │ │ │ │ ├── merge_yaml.rb │ │ │ │ │ ├── to_bool.rb │ │ │ │ │ ├── to_string.rb │ │ │ │ │ ├── value_true.rb │ │ │ │ │ └── values_no_error.rb │ │ │ │ └── provider │ │ │ │ └── package │ │ │ │ └── npm.rb │ │ ├── manifests │ │ │ ├── adminer.pp │ │ │ ├── apache │ │ │ │ ├── mod.pp │ │ │ │ ├── modpagespeed.pp │ │ │ │ ├── params.pp │ │ │ │ ├── proxy_fcgi.pp │ │ │ │ ├── repo.pp │ │ │ │ └── repo │ │ │ │ │ ├── centos.pp │ │ │ │ │ ├── debian.pp │ │ │ │ │ └── ubuntu.pp │ │ │ ├── beanstalkd │ │ │ │ └── console.pp │ │ │ ├── debian │ │ │ │ └── non_free.pp │ │ │ ├── firewall │ │ │ │ ├── port.pp │ │ │ │ ├── post.pp │ │ │ │ └── pre.pp │ │ │ ├── hhvm.pp │ │ │ ├── ini.pp │ │ │ ├── init.pp │ │ │ ├── mariadb.pp │ │ │ ├── mongodb │ │ │ │ └── db.pp │ │ │ ├── mysql │ │ │ │ ├── db.pp │ │ │ │ ├── params.pp │ │ │ │ └── repo.pp │ │ │ ├── nginx.pp │ │ │ ├── nginx │ │ │ │ ├── host.pp │ │ │ │ └── upstream.pp │ │ │ ├── nodejs.pp │ │ │ ├── params.pp │ │ │ ├── php │ │ │ │ ├── beta.pp │ │ │ │ ├── composer.pp │ │ │ │ ├── drush.pp │ │ │ │ ├── extra_repos.pp │ │ │ │ ├── fpm │ │ │ │ │ ├── ini.pp │ │ │ │ │ └── pool_ini.pp │ │ │ │ ├── ini.pp │ │ │ │ ├── module.pp │ │ │ │ ├── pear.pp │ │ │ │ ├── pecl.pp │ │ │ │ ├── repos.pp │ │ │ │ ├── settings.pp │ │ │ │ ├── wordpress │ │ │ │ │ └── wpcli.pp │ │ │ │ ├── xdebug.pp │ │ │ │ └── xhprof.pp │ │ │ ├── phpmyadmin.pp │ │ │ ├── postgresql │ │ │ │ └── db.pp │ │ │ ├── python │ │ │ │ ├── install.pp │ │ │ │ ├── pip.pp │ │ │ │ └── preinstall.pp │ │ │ ├── ruby │ │ │ │ ├── dotfile.pp │ │ │ │ └── install.pp │ │ │ ├── server │ │ │ │ ├── centos_ius.pp │ │ │ │ └── link_dotfiles.pp │ │ │ ├── sqlite │ │ │ │ ├── db.pp │ │ │ │ └── install.pp │ │ │ ├── ssl_cert.pp │ │ │ ├── supervisord.pp │ │ │ ├── xdebug.pp │ │ │ └── xhprof.pp │ │ ├── metadata.json │ │ └── templates │ │ │ ├── apache │ │ │ ├── custom_fragment.erb │ │ │ ├── files_match.erb │ │ │ ├── hhvm-httpd.conf.erb │ │ │ └── mod │ │ │ │ └── spdy │ │ │ │ ├── php-wrapper.erb │ │ │ │ └── spdy_conf.erb │ │ │ ├── nginx │ │ │ └── default_conf.erb │ │ │ └── nodejs │ │ │ └── install.erb │ │ ├── puppi │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── README_check.md │ │ ├── README_deploy.md │ │ ├── README_info.md │ │ ├── README_log.md │ │ ├── Rakefile │ │ ├── composer.json │ │ ├── files │ │ │ ├── info │ │ │ │ └── readme │ │ │ │ │ ├── readme │ │ │ │ │ └── readme-default │ │ │ ├── mailpuppicheck │ │ │ ├── mcollective │ │ │ │ ├── mc-puppi │ │ │ │ ├── puppi.ddl │ │ │ │ ├── puppi.rb │ │ │ │ ├── puppicheck │ │ │ │ └── puppideploy │ │ │ └── scripts │ │ │ │ ├── archive.sh │ │ │ │ ├── check_project.sh │ │ │ │ ├── checkwardir.sh │ │ │ │ ├── clean_filelist.sh │ │ │ │ ├── database.sh │ │ │ │ ├── delete.sh │ │ │ │ ├── deploy.sh │ │ │ │ ├── deploy_files.sh │ │ │ │ ├── execute.sh │ │ │ │ ├── firewall.sh │ │ │ │ ├── functions │ │ │ │ ├── get_file.sh │ │ │ │ ├── get_filesfromlist.sh │ │ │ │ ├── get_maven_files.sh │ │ │ │ ├── get_metadata.sh │ │ │ │ ├── git.sh │ │ │ │ ├── header │ │ │ │ ├── hg.sh │ │ │ │ ├── predeploy.sh │ │ │ │ ├── predeploy_tar.sh │ │ │ │ ├── report_mail.sh │ │ │ │ ├── report_mongo.sh │ │ │ │ ├── service.sh │ │ │ │ ├── svn.sh │ │ │ │ ├── wait.sh │ │ │ │ ├── yant.sh │ │ │ │ └── yum.sh │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── last_run.rb │ │ │ │ ├── puppi_projects.rb │ │ │ │ └── windows_common_appdata.rb │ │ │ └── puppet │ │ │ │ ├── functions │ │ │ │ └── params_lookup.rb │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── any2bool.rb │ │ │ │ ├── bool2ensure.rb │ │ │ │ ├── get_class_args.rb │ │ │ │ ├── get_magicvar.rb │ │ │ │ ├── get_module_path.rb │ │ │ │ ├── nslookup.rb │ │ │ │ ├── options_lookup.rb │ │ │ │ ├── params_lookup.rb │ │ │ │ └── url_parse.rb │ │ ├── manifests │ │ │ ├── check.pp │ │ │ ├── configure.pp │ │ │ ├── dependencies.pp │ │ │ ├── deploy.pp │ │ │ ├── extras.pp │ │ │ ├── helper.pp │ │ │ ├── helpers.pp │ │ │ ├── info.pp │ │ │ ├── info │ │ │ │ ├── instance.pp │ │ │ │ ├── module.pp │ │ │ │ └── readme.pp │ │ │ ├── init.pp │ │ │ ├── initialize.pp │ │ │ ├── install_packages.pp │ │ │ ├── log.pp │ │ │ ├── mcollective │ │ │ │ ├── client.pp │ │ │ │ └── server.pp │ │ │ ├── netinstall.pp │ │ │ ├── one.pp │ │ │ ├── params.pp │ │ │ ├── project.pp │ │ │ ├── project │ │ │ │ ├── README │ │ │ │ ├── archive.pp │ │ │ │ ├── builder.pp │ │ │ │ ├── dir.pp │ │ │ │ ├── files.pp │ │ │ │ ├── git.pp │ │ │ │ ├── hg.pp │ │ │ │ ├── maven.pp │ │ │ │ ├── mysql.pp │ │ │ │ ├── service.pp │ │ │ │ ├── svn.pp │ │ │ │ ├── tar.pp │ │ │ │ ├── war.pp │ │ │ │ ├── y4maven.pp │ │ │ │ └── yum.pp │ │ │ ├── report.pp │ │ │ ├── rollback.pp │ │ │ ├── run.pp │ │ │ ├── runscript.pp │ │ │ ├── skel.pp │ │ │ ├── todo.pp │ │ │ ├── two.pp │ │ │ └── ze.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── puppi_spec.rb │ │ │ ├── defines │ │ │ │ ├── puppi_check_spec.rb │ │ │ │ ├── puppi_deploy_spec.rb │ │ │ │ ├── puppi_helper_spec.rb │ │ │ │ ├── puppi_info_spec.rb │ │ │ │ ├── puppi_initialize_spec.rb │ │ │ │ ├── puppi_log_spec.rb │ │ │ │ ├── puppi_project_spec.rb │ │ │ │ ├── puppi_report_spec.rb │ │ │ │ ├── puppi_rollback_spec.rb │ │ │ │ ├── puppi_run_spec.rb │ │ │ │ ├── puppi_todo_spec.rb │ │ │ │ └── puppi_ze_spec.rb │ │ │ ├── functions │ │ │ │ ├── any2bool_spec.rb │ │ │ │ ├── bool2ensure_spec.rb │ │ │ │ └── url_parse_spec.rb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ ├── helpers │ │ │ └── standard.yml.erb │ │ │ ├── info.erb │ │ │ ├── info │ │ │ ├── instance.erb │ │ │ ├── module.erb │ │ │ ├── puppet.erb │ │ │ └── readme.erb │ │ │ ├── install_packages.erb │ │ │ ├── log.erb │ │ │ ├── project │ │ │ └── config.erb │ │ │ ├── puppi.conf.erb │ │ │ ├── puppi.erb │ │ │ ├── puppi_clean.erb │ │ │ └── todo.erb │ │ ├── pyenv │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── feature │ │ │ │ └── pyenv.rb │ │ │ │ ├── provider │ │ │ │ └── pyenv_python │ │ │ │ │ └── pyenv.rb │ │ │ │ └── type │ │ │ │ └── pyenv_python.rb │ │ ├── manifests │ │ │ ├── init.pp │ │ │ └── params.pp │ │ └── metadata.json │ │ ├── rabbitmq │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── TODO │ │ ├── files │ │ │ ├── README.markdown │ │ │ └── plugins │ │ │ │ ├── amqp_client-2.3.1.ez │ │ │ │ └── rabbit_stomp-2.3.1.ez │ │ ├── lib │ │ │ └── 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_policy_spec.rb │ │ │ │ ├── rabbitmq_queue_spec.rb │ │ │ │ ├── rabbitmq_user_permissions_spec.rb │ │ │ │ ├── rabbitmq_user_spec.rb │ │ │ │ └── rabbitmq_vhost_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 │ │ ├── rvm │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── Puppetfile │ │ ├── Puppetfile.lock │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── checksums.json │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── rvm_installed.rb │ │ │ │ └── rvm_version.rb │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── rvm_alias │ │ │ │ │ └── alias.rb │ │ │ │ ├── rvm_gem │ │ │ │ │ └── gem.rb │ │ │ │ ├── rvm_gemset │ │ │ │ │ └── gemset.rb │ │ │ │ ├── rvm_system_ruby │ │ │ │ │ └── rvm_system_ruby.rb │ │ │ │ └── rvm_wrapper │ │ │ │ │ └── wrapper.rb │ │ │ │ └── type │ │ │ │ ├── rvm_alias.rb │ │ │ │ ├── rvm_gem.rb │ │ │ │ ├── rvm_gemset.rb │ │ │ │ ├── rvm_system_ruby.rb │ │ │ │ └── rvm_wrapper.rb │ │ ├── manifests │ │ │ ├── dependencies.pp │ │ │ ├── dependencies │ │ │ │ ├── centos.pp │ │ │ │ ├── oraclelinux.pp │ │ │ │ └── ubuntu.pp │ │ │ ├── gnupg_key.pp │ │ │ ├── gpg.pp │ │ │ ├── group.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ ├── passenger │ │ │ │ ├── apache.pp │ │ │ │ ├── dependencies.pp │ │ │ │ ├── dependencies │ │ │ │ │ ├── centos.pp │ │ │ │ │ ├── oraclelinux.pp │ │ │ │ │ └── ubuntu.pp │ │ │ │ └── gem.pp │ │ │ ├── rvmrc.pp │ │ │ ├── system.pp │ │ │ └── system_user.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-65-x64-docker.yml │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ ├── debian-7-x64-docker.yml │ │ │ │ │ ├── debian-7-x64.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── ubuntu-server-1404-x64-docker.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ │ └── rvm_system_spec.rb │ │ │ ├── classes │ │ │ │ ├── dependencies_spec.rb │ │ │ │ ├── gnupg_key_spec.rb │ │ │ │ ├── gpg_spec.rb │ │ │ │ ├── init_spec.rb │ │ │ │ ├── rvmrc_spec.rb │ │ │ │ └── system_spec.rb │ │ │ ├── defines │ │ │ │ ├── rvm_alias_spec.rb │ │ │ │ ├── rvm_gem_spec.rb │ │ │ │ ├── rvm_gemset_spec.rb │ │ │ │ ├── rvm_system_ruby_spec.rb │ │ │ │ ├── rvm_wrapper_spec.rb │ │ │ │ └── system_user_spec.rb │ │ │ ├── fixtures │ │ │ │ └── hiera.yaml │ │ │ ├── spec_helper.rb │ │ │ └── spec_helper_acceptance.rb │ │ ├── templates │ │ │ └── rvmrc.erb │ │ └── tests │ │ │ └── init.pp │ │ ├── solr │ │ ├── .fixtures.yml │ │ ├── .gemfile │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.markdown │ │ ├── README.md │ │ ├── Rakefile │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ ├── staging │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── Vagrantfile │ │ ├── checksums.json │ │ ├── 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 │ │ │ ├── .init.pp.swp │ │ │ ├── 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 │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .sync.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── dirname.rb │ │ │ │ │ ├── dos2unix.rb │ │ │ │ │ ├── downcase.rb │ │ │ │ │ ├── empty.rb │ │ │ │ │ ├── ensure_packages.rb │ │ │ │ │ ├── ensure_resource.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_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 │ │ │ │ │ ├── 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 │ │ │ ├── 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_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 │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── dirname.rb │ │ │ │ │ │ ├── dos2unix.rb │ │ │ │ │ │ ├── downcase.rb │ │ │ │ │ │ ├── empty.rb │ │ │ │ │ │ ├── ensure_packages.rb │ │ │ │ │ │ ├── ensure_resource.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_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 │ │ │ │ │ │ ├── values.rb │ │ │ │ │ │ ├── values_at.rb │ │ │ │ │ │ └── zip.rb │ │ │ │ │ ├── provider │ │ │ │ │ └── file_line │ │ │ │ │ │ └── ruby.rb │ │ │ │ │ └── type │ │ │ │ │ ├── anchor.rb │ │ │ │ │ └── file_line.rb │ │ │ │ └── manifests │ │ │ │ ├── init.pp │ │ │ │ └── stages.pp │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── is_absolute_path_spec.rb │ │ │ ├── provider │ │ │ └── file_line │ │ │ │ └── ruby_spec.rb │ │ │ └── type │ │ │ ├── anchor_spec.rb │ │ │ └── file_line_spec.rb │ │ ├── supervisord │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── Changelog │ │ ├── Gemfile │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── array2csv.rb │ │ │ │ └── hash2csv.rb │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── eventlistener.pp │ │ │ ├── fcgi_program.pp │ │ │ ├── group.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── pip.pp │ │ │ ├── program.pp │ │ │ ├── reload.pp │ │ │ ├── service.pp │ │ │ └── supervisorctl.pp │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-65-i386.yml │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ ├── debian-73-i386.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ └── default.yml │ │ │ │ └── supervisord_spec.rb │ │ │ ├── classes │ │ │ │ └── supervisord_spec.rb │ │ │ ├── defines │ │ │ │ ├── eventlistener_spec.rb │ │ │ │ ├── fcgi_program_spec.rb │ │ │ │ ├── group_spec.rb │ │ │ │ ├── program_spec.rb │ │ │ │ └── supervisorctl.rb │ │ │ ├── functions │ │ │ │ ├── array2csv_spec.rb │ │ │ │ └── hash2csv_spec.rb │ │ │ ├── spec_helper.rb │ │ │ └── spec_helper_acceptance.rb │ │ ├── templates │ │ │ ├── conf │ │ │ │ ├── eventlistener.erb │ │ │ │ ├── fcgi_program.erb │ │ │ │ ├── group.erb │ │ │ │ └── program.erb │ │ │ ├── init │ │ │ │ ├── Debian │ │ │ │ │ ├── defaults.erb │ │ │ │ │ └── init.erb │ │ │ │ └── RedHat │ │ │ │ │ ├── defaults.erb │ │ │ │ │ └── init.erb │ │ │ ├── supervisord_inet.erb │ │ │ ├── supervisord_main.erb │ │ │ └── supervisord_unix.erb │ │ └── tests │ │ │ ├── group.pp │ │ │ ├── init.pp │ │ │ └── program.pp │ │ ├── swap_file │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Guardfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── init.pp │ │ │ └── params.pp │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── class_spec.rb │ │ │ │ └── nodesets │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ ├── classes │ │ │ │ ├── coverage_spec.rb │ │ │ │ └── swap_file_spec.rb │ │ │ ├── spec_helper.rb │ │ │ └── spec_helper_acceptance.rb │ │ └── tests │ │ │ └── init.pp │ │ ├── sysctl │ │ ├── ChangeLog │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── base.pp │ │ │ └── init.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── sysctl_base_spec.rb │ │ │ ├── defines │ │ │ │ └── sysctl_init_spec.rb │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ └── sysctl.d-file.erb │ │ └── tests │ │ │ ├── base.pp │ │ │ └── init.pp │ │ ├── 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 │ │ ├── vcsrepo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.BZR.markdown │ │ ├── README.CVS.markdown │ │ ├── README.GIT.markdown │ │ ├── README.HG.markdown │ │ ├── README.SVN.markdown │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── 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 │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── vcsrepo.rb │ │ │ │ └── vcsrepo │ │ │ │ │ ├── bzr.rb │ │ │ │ │ ├── cvs.rb │ │ │ │ │ ├── dummy.rb │ │ │ │ │ ├── git.rb │ │ │ │ │ ├── hg.rb │ │ │ │ │ └── svn.rb │ │ │ │ └── type │ │ │ │ └── vcsrepo.rb │ │ └── spec │ │ │ ├── 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 │ │ │ ├── support │ │ │ ├── filesystem_helpers.rb │ │ │ └── fixture_helpers.rb │ │ │ └── unit │ │ │ └── puppet │ │ │ ├── provider │ │ │ └── vcsrepo │ │ │ │ ├── bzr_spec.rb │ │ │ │ ├── cvs_spec.rb │ │ │ │ ├── git_spec.rb │ │ │ │ ├── hg_spec.rb │ │ │ │ └── svn_spec.rb │ │ │ └── type │ │ │ └── README.markdown │ │ └── yum │ │ ├── .fixtures.yml │ │ ├── .gemfile │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ ├── Amazon.3 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-6 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── CentOS.4 │ │ │ └── rpm-gpg │ │ │ │ └── RPM-GPG-KEY-EPEL │ │ ├── CentOS.5 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-5 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ │ ├── RPM-GPG-KEY.art │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── CentOS.6 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-6 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-PGDG │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ │ ├── RPM-GPG-KEY.art │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── CentOS.7 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-7 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-PGDG │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ │ ├── RPM-GPG-KEY.art │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── Scientific.6 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-5 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-dawson │ │ │ │ ├── RPM-GPG-KEY-redhat-beta │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-former │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-release │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-rhx │ │ │ │ ├── RPM-GPG-KEY-redhat-release │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-sl │ │ │ │ ├── RPM-GPG-KEY-sl3 │ │ │ │ ├── RPM-GPG-KEY-sl4 │ │ │ │ ├── RPM-GPG-KEY-sl5 │ │ │ │ ├── RPM-GPG-KEY-sl6 │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── empty │ │ │ └── .placeholder │ │ ├── rpm-gpg │ │ │ ├── RPM-GPG-KEY-Adiscon │ │ │ ├── RPM-GPG-KEY-CentOS-5 │ │ │ ├── RPM-GPG-KEY-CentOS-6 │ │ │ ├── RPM-GPG-KEY-CentOS-7 │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ ├── RPM-GPG-KEY-EPEL-4 │ │ │ ├── RPM-GPG-KEY-EPEL-5 │ │ │ ├── RPM-GPG-KEY-EPEL-6 │ │ │ ├── RPM-GPG-KEY-EPEL-7 │ │ │ ├── RPM-GPG-KEY-NewRelic │ │ │ ├── RPM-GPG-KEY-PGDG │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ ├── RPM-GPG-KEY-VMWARE-PACKAGING │ │ │ ├── RPM-GPG-KEY-beta │ │ │ ├── RPM-GPG-KEY-cloudera │ │ │ ├── RPM-GPG-KEY-elasticsearch │ │ │ ├── RPM-GPG-KEY-elrepo.org │ │ │ ├── RPM-GPG-KEY-erlang_solutions │ │ │ ├── RPM-GPG-KEY-icinga │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ ├── RPM-GPG-KEY-mysql │ │ │ ├── RPM-GPG-KEY-puppetlabs │ │ │ ├── RPM-GPG-KEY-redhat-beta │ │ │ ├── RPM-GPG-KEY-redhat-legacy-former │ │ │ ├── RPM-GPG-KEY-redhat-legacy-release │ │ │ ├── RPM-GPG-KEY-redhat-legacy-rhx │ │ │ ├── RPM-GPG-KEY-redhat-release │ │ │ ├── RPM-GPG-KEY-remi │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ ├── RPM-GPG-KEY-sl │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ ├── RPM-GPG-KEY-webtatic-el7 │ │ │ ├── RPM-GPG-KEY.art │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ └── RubyWorks.GPG.key │ │ └── yum-updatesd.conf │ │ ├── manifests │ │ ├── cron.pp │ │ ├── defaults.pp │ │ ├── init.pp │ │ ├── managed_yumrepo.pp │ │ ├── params.pp │ │ ├── plugin.pp │ │ ├── plugin │ │ │ ├── security.pp │ │ │ └── versionlock.pp │ │ ├── prerequisites.pp │ │ ├── repo │ │ │ ├── a10gen.pp │ │ │ ├── atomic.pp │ │ │ ├── atrpms.pp │ │ │ ├── cdh5.pp │ │ │ ├── centalt.pp │ │ │ ├── centos4.pp │ │ │ ├── centos5.pp │ │ │ ├── centos6.pp │ │ │ ├── centos7.pp │ │ │ ├── centos_testing.pp │ │ │ ├── ceph.pp │ │ │ ├── cuda.pp │ │ │ ├── dell_omsa.pp │ │ │ ├── devtools.pp │ │ │ ├── devtools2.pp │ │ │ ├── elasticsearch10.pp │ │ │ ├── elasticsearch17.pp │ │ │ ├── elasticsearch90.pp │ │ │ ├── elastix.pp │ │ │ ├── elrepo.pp │ │ │ ├── epel.pp │ │ │ ├── esl.pp │ │ │ ├── foreman.pp │ │ │ ├── icinga.pp │ │ │ ├── integ_ganeti.pp │ │ │ ├── jenkins.pp │ │ │ ├── jpackage5.pp │ │ │ ├── jpackage6.pp │ │ │ ├── karan.pp │ │ │ ├── kibana41.pp │ │ │ ├── logstash13.pp │ │ │ ├── logstash14.pp │ │ │ ├── logstashforwarder.pp │ │ │ ├── mod_pagespeed.pp │ │ │ ├── mongodb.pp │ │ │ ├── monitoringsucks.pp │ │ │ ├── mysql_community.pp │ │ │ ├── newrelic.pp │ │ │ ├── nginx.pp │ │ │ ├── openshift3.pp │ │ │ ├── openshift_server.pp │ │ │ ├── openstack_grizzly.pp │ │ │ ├── passenger.pp │ │ │ ├── percona.pp │ │ │ ├── pgdg91.pp │ │ │ ├── pgdg92.pp │ │ │ ├── pgdg93.pp │ │ │ ├── pgdg94.pp │ │ │ ├── pgdg95.pp │ │ │ ├── pulp.pp │ │ │ ├── puppetdevel.pp │ │ │ ├── puppetlabs.pp │ │ │ ├── puppetlabs_collections.pp │ │ │ ├── rbel.pp │ │ │ ├── remi.pp │ │ │ ├── remi_php55.pp │ │ │ ├── remi_php56.pp │ │ │ ├── remi_php70.pp │ │ │ ├── repoforge.pp │ │ │ ├── repoforgeextras.pp │ │ │ ├── rpmforge.pp │ │ │ ├── rsyslog_v7.pp │ │ │ ├── rundeck1.pp │ │ │ ├── rundeck2.pp │ │ │ ├── scl.pp │ │ │ ├── sclruby200.pp │ │ │ ├── shibboleth.pp │ │ │ ├── sl5.pp │ │ │ ├── sl6.pp │ │ │ ├── tengen.pp │ │ │ ├── tmz.pp │ │ │ ├── varnish.pp │ │ │ ├── vfabric.pp │ │ │ ├── virtualbox.pp │ │ │ ├── vmware_tools.pp │ │ │ ├── webtatic.pp │ │ │ ├── xenserver.pp │ │ │ ├── zabbix18.pp │ │ │ ├── zabbix20.pp │ │ │ ├── zabbix22.pp │ │ │ └── zabbix24.pp │ │ ├── updatesd.pp │ │ └── versionlock.pp │ │ ├── metadata.json │ │ ├── spec │ │ ├── classes │ │ │ └── yum_spec.rb │ │ └── spec_helper.rb │ │ └── templates │ │ ├── yum-cron-rhel7.erb │ │ └── yum-cron.erb ├── ruby │ ├── deep_merge.rb │ └── puppet.rb ├── shell │ ├── ascii-art │ │ ├── important-notices.txt │ │ └── self-promotion.txt │ ├── check-puppet-modules.sh │ ├── execute-files.sh │ ├── important-notices.sh │ ├── initial-setup.sh │ ├── install-puppet.sh │ ├── os-detect.sh │ └── ssh-keygen.sh └── vagrant │ ├── Vagrantfile-aws │ ├── Vagrantfile-digitalocean │ ├── Vagrantfile-gce │ ├── Vagrantfile-ikoulacloud │ ├── Vagrantfile-linode │ ├── Vagrantfile-local │ ├── Vagrantfile-rackspace │ └── Vagrantfile-softlayer ├── tests ├── ConfigTest.php ├── DAOFactoryTest.php ├── FileDataManagerTest.php ├── FixtureBuilderTest.php ├── IsoscelesExampleControllerTest.php ├── JSONDecoderTest.php ├── LoaderTest.php ├── PDODAOTest.php ├── ProfilerTest.php ├── RouterTest.php ├── SerializerTest.php ├── UtilsTest.php ├── ViewManagerTest.php ├── classes │ ├── class.IsoscelesBasicUnitTestCase.php │ ├── class.IsoscelesTestDatabaseHelper.php │ └── class.IsoscelesUnitTestCase.php ├── config.sample.inc.php ├── init.tests.php └── setup │ └── build-db_mysql.sql └── www-example ├── .htaccess ├── config.inc.php └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/Vagrantfile -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/data/README.md -------------------------------------------------------------------------------- /libs/class.Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.Config.php -------------------------------------------------------------------------------- /libs/class.FileDataManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.FileDataManager.php -------------------------------------------------------------------------------- /libs/class.FixtureBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.FixtureBuilder.php -------------------------------------------------------------------------------- /libs/class.JSONDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.JSONDecoder.php -------------------------------------------------------------------------------- /libs/class.Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.Loader.php -------------------------------------------------------------------------------- /libs/class.Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.Profiler.php -------------------------------------------------------------------------------- /libs/class.Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.Router.php -------------------------------------------------------------------------------- /libs/class.Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.Serializer.php -------------------------------------------------------------------------------- /libs/class.Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.Session.php -------------------------------------------------------------------------------- /libs/class.SessionCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.SessionCache.php -------------------------------------------------------------------------------- /libs/class.Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.Utils.php -------------------------------------------------------------------------------- /libs/class.ViewManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/class.ViewManager.php -------------------------------------------------------------------------------- /libs/config.sample.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/config.sample.inc.php -------------------------------------------------------------------------------- /libs/controller/class.AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/controller/class.AuthController.php -------------------------------------------------------------------------------- /libs/controller/class.Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/controller/class.Controller.php -------------------------------------------------------------------------------- /libs/dao/class.DAOFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/dao/class.DAOFactory.php -------------------------------------------------------------------------------- /libs/dao/class.PDODAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/dao/class.PDODAO.php -------------------------------------------------------------------------------- /libs/dao/class.TestFauxDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/dao/class.TestFauxDAO.php -------------------------------------------------------------------------------- /libs/dao/class.TestMySQLDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/dao/class.TestMySQLDAO.php -------------------------------------------------------------------------------- /libs/dao/interface.TestDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/dao/interface.TestDAO.php -------------------------------------------------------------------------------- /libs/exceptions/class.ConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/exceptions/class.ConfigurationException.php -------------------------------------------------------------------------------- /libs/exceptions/class.FixtureBuilderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/exceptions/class.FixtureBuilderException.php -------------------------------------------------------------------------------- /libs/exceptions/class.JSONDecoderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/exceptions/class.JSONDecoderException.php -------------------------------------------------------------------------------- /libs/exceptions/class.SerializerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/exceptions/class.SerializerException.php -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/COPYING.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/COPYING.lib -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/README -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/SMARTY_2_BC_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/SMARTY_2_BC_NOTES.txt -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/SMARTY_3.0_BC_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/SMARTY_3.0_BC_NOTES.txt -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/SMARTY_3.1_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/SMARTY_3.1_NOTES.txt -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/change_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/change_log.txt -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/demo/configs/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/demo/configs/test.conf -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/demo/index.php -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/demo/templates/footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/libs/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/libs/Smarty.class.php -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/libs/SmartyBC.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/libs/SmartyBC.class.php -------------------------------------------------------------------------------- /libs/extlibs/Smarty-3.1.21/libs/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/extlibs/Smarty-3.1.21/libs/debug.tpl -------------------------------------------------------------------------------- /libs/model/class.TestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/model/class.TestData.php -------------------------------------------------------------------------------- /libs/view/_isosceles.footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/_isosceles.footer.tpl -------------------------------------------------------------------------------- /libs/view/_isosceles.header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/_isosceles.header.tpl -------------------------------------------------------------------------------- /libs/view/_isosceles.profiler.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/_isosceles.profiler.json.tpl -------------------------------------------------------------------------------- /libs/view/_isosceles.profiler.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/_isosceles.profiler.tpl -------------------------------------------------------------------------------- /libs/view/_isosceles.usermessage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/_isosceles.usermessage.tpl -------------------------------------------------------------------------------- /libs/view/isosceles-example-authcontroller.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles-example-authcontroller.tpl -------------------------------------------------------------------------------- /libs/view/isosceles-example-controller.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles-example-controller.tpl -------------------------------------------------------------------------------- /libs/view/isosceles-page-not-found-controller.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles-page-not-found-controller.tpl -------------------------------------------------------------------------------- /libs/view/isosceles-signin-controller.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles-signin-controller.tpl -------------------------------------------------------------------------------- /libs/view/isosceles.500-perm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles.500-perm.tpl -------------------------------------------------------------------------------- /libs/view/isosceles.500.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles.500.json.tpl -------------------------------------------------------------------------------- /libs/view/isosceles.500.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles.500.tpl -------------------------------------------------------------------------------- /libs/view/isosceles.500.txt.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/isosceles.500.txt.tpl -------------------------------------------------------------------------------- /libs/view/isosceles.json.tpl: -------------------------------------------------------------------------------- 1 | {$json} -------------------------------------------------------------------------------- /libs/view/plugins/modifier.filter_xss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/libs/view/plugins/modifier.filter_xss.php -------------------------------------------------------------------------------- /puphpet/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/config.yaml -------------------------------------------------------------------------------- /puphpet/files/EXEC-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/EXEC-README.txt -------------------------------------------------------------------------------- /puphpet/files/dot/.bash_aliases: -------------------------------------------------------------------------------- 1 | source ~/.bashrc 2 | -------------------------------------------------------------------------------- /puphpet/files/dot/.bash_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/.bash_git -------------------------------------------------------------------------------- /puphpet/files/dot/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/.bash_profile -------------------------------------------------------------------------------- /puphpet/files/dot/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/.bashrc -------------------------------------------------------------------------------- /puphpet/files/dot/.git-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/.git-completion.bash -------------------------------------------------------------------------------- /puphpet/files/dot/.git-prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/.git-prompt.sh -------------------------------------------------------------------------------- /puphpet/files/dot/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/.vimrc -------------------------------------------------------------------------------- /puphpet/files/dot/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/README.txt -------------------------------------------------------------------------------- /puphpet/files/dot/ssh/insecure_private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/dot/ssh/insecure_private_key -------------------------------------------------------------------------------- /puphpet/files/exec-always-unprivileged/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/files/exec-always/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/files/exec-once-unprivileged/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/files/exec-once/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/files/exec-once/isosceles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/files/exec-once/isosceles.sh -------------------------------------------------------------------------------- /puphpet/files/exec-preprovision/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/files/isosceles-setup/configs/config.tests.inc.php: -------------------------------------------------------------------------------- 1 | " 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apache/templates/mod/dav_fs.conf.erb: -------------------------------------------------------------------------------- 1 | DAVLockDB "<%= @dav_lock %>" 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apache/templates/vhost/_file_footer.erb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apache/templates/vhost/_serversignature.erb: -------------------------------------------------------------------------------- 1 | ServerSignature Off 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/.puppet-lint.rc: -------------------------------------------------------------------------------- 1 | --no-single_quote_string_with_variables-check 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/.sync.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/backports.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/backports.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/builddep.pp: -------------------------------------------------------------------------------- 1 | package{ 'glusterfs-server': 2 | install_options => 'build-dep', 3 | } 4 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/force.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/force.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/hold.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/hold.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/key.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/pin.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/ppa.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/release.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/release.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/examples/source.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/examples/unattended_upgrades.pp: -------------------------------------------------------------------------------- 1 | # TODO 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/backports.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/backports.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/conf.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/key.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/pin.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/ppa.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/setting.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/setting.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/source.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/manifests/update.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/manifests/update.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/templates/_conf_header.erb: -------------------------------------------------------------------------------- 1 | // This file is managed by Puppet. DO NOT EDIT. 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/templates/_header.erb: -------------------------------------------------------------------------------- 1 | # This file is managed by Puppet. DO NOT EDIT. 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/templates/conf.erb: -------------------------------------------------------------------------------- 1 | <%= @content -%> 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/templates/pin.pref.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/templates/pin.pref.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/apt/templates/proxy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/apt/templates/proxy.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/beanstalkd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/beanstalkd/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/beanstalkd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/beanstalkd/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/beanstalkd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/beanstalkd/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/beanstalkd/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/beanstalkd/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/beanstalkd/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/beanstalkd/run-tests.sh -------------------------------------------------------------------------------- /puphpet/puppet/modules/beanstalkd/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vagrant/ 3 | pkg/ 4 | Gemfile.lock 5 | log 6 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/.pmtignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/manifests/php.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/manifests/repo.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/blackfire/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/blackfire/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/Vagrantfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/manifests/exec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/manifests/exec.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/spec/fixtures/puppet/hiera.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/composer/tests/project.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/composer/tests/project.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/.sync.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/manifests/setup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/manifests/setup.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/tests/fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/tests/fragment.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/concat/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/concat/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/Changes -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/NOTES.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/TODO.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/checksums.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/spec/fixtures/modules/template_body/templates/test1.erb: -------------------------------------------------------------------------------- 1 | Goodbye cruel world 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/datacat/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/datacat/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/.pmtignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/CONTRIBUTORS -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/elasticsearch/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/elasticsearch/spec/classes/099_coverage_spec.rb: -------------------------------------------------------------------------------- 1 | at_exit { RSpec::Puppet::Coverage.report! } 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/Gemfile.lock -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/checksums.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/epel/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/epel/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | spec/fixtures 3 | tests 4 | .rspec_system 5 | .bundle 6 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/Gemfile.lock -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/erlang/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/erlang/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/manifests/linux.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/manifests/linux.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/firewall/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/firewall/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/CHANGELOG -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/manifests/gitosis.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/manifests/gitosis.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/manifests/subtree.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/manifests/subtree.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/git/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/tests/gitosis.pp: -------------------------------------------------------------------------------- 1 | class { 'git::gitosis': } 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/git/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'git': } 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/CHANGELOG -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/files/random.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/files/random.key -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/manifests/install.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/tests/gnupg_key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/gnupg/tests/gnupg_key.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/gnupg/tests/init.pp: -------------------------------------------------------------------------------- 1 | include gnupg 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/.sync.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/spec/fixtures/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/inifile/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/inifile/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/manifests/config.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/tests/alternative.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/tests/alternative.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/java/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/java/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg/ 3 | *.swp 4 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/locales/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/locales/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/locales/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/locales/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/locales/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/locales/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/locales/tests/init.pp: -------------------------------------------------------------------------------- 1 | include locales 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/.sync.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/manifests/client.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/manifests/db.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/manifests/mongos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/manifests/mongos.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/manifests/repo.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/manifests/server.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/tests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/tests/client.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/tests/globals.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/tests/globals.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { '::mongodb': } 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/tests/replicaset.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/tests/replicaset.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/tests/server.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mongodb/tests/sharding.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mongodb/tests/sharding.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/checksums.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/manifests/mount.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/manifests/mount.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/manifests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/manifests/plugin.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/manifests/port.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/manifests/port.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/manifests/url.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/manifests/url.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/monitor/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/monitor/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/.geppetto-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/.geppetto-rc.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/.sync.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/TODO -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/examples/backup.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/bindings.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::bindings': 2 | php_enable => true, 3 | } 4 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/java.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::java':} 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/mysql_db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/examples/mysql_db.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/perl.pp: -------------------------------------------------------------------------------- 1 | include mysql::bindings::perl 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/python.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::bindings::python':} 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/ruby.pp: -------------------------------------------------------------------------------- 1 | include mysql::bindings::ruby 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/examples/server.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/examples/server/config.pp: -------------------------------------------------------------------------------- 1 | mysql::server::config { 'testfile': 2 | 3 | } 4 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/manifests/bindings.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/manifests/bindings.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/manifests/client.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/manifests/db.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/manifests/server.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/templates/meb.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/templates/meb.cnf.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/mysql/templates/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/mysql/templates/my.cnf.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/.travis/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/.travis/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/.travis/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/.travis/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/Puppetfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/Puppetfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/Puppetfile.lock -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/composer.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/manifests/config.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/manifests/package.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/manifests/package.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/manifests/service.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/templates/vhost/locations/stub_status.erb: -------------------------------------------------------------------------------- 1 | stub_status on; 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/tests/upstream.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/tests/upstream.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/tests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/tests/vhost.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/nginx/tests/vhost_ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/nginx/tests/vhost_ssl.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/.sync.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/manifests/config.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/manifests/install.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/manifests/service.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb: -------------------------------------------------------------------------------- 1 | #my uber ntp config 2 | # 3 | 4 | server foobar 5 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/templates/ntp.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/templates/ntp.conf.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/ntp/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/ntp/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/.gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/augeas.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/augeas.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/conf.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/devel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/devel.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/ini.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/ini.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/mod.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/module.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/pear.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/pear.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/manifests/spec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/manifests/spec.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/templates/extra-ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/templates/extra-ini.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/php/templates/spec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/php/templates/spec.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/.sync.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/NOTICE -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/postgresql/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/postgresql/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/files/php7/php7-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/files/php7/php7-fpm -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/files/php7/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/files/php7/www.conf -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/manifests/hhvm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/manifests/hhvm.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/manifests/ini.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/manifests/ini.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/manifests/nginx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/manifests/nginx.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/manifests/nodejs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/manifests/nodejs.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puphpet/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puphpet/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/README_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/README_check.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/README_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/README_deploy.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/README_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/README_info.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/README_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/README_log.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/composer.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/files/scripts/hg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/files/scripts/hg.sh -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/check.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/check.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/deploy.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/extras.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/extras.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/helper.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/helper.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/info.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/info.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/log.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/one.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/one.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/report.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/report.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/run.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/run.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/skel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/skel.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/todo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/todo.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/two.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/two.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/manifests/ze.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/manifests/ze.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/templates/info.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/templates/info.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/templates/log.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/templates/log.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/templates/puppi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/templates/puppi.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/puppi/templates/todo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/puppi/templates/todo.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/.gitignore: -------------------------------------------------------------------------------- 1 | .python-version 2 | Gemfile.lock 3 | pkg 4 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/pyenv/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/pyenv/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/TODO -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/templates/rabbitmq-server.service.d/limits.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | LimitNOFILE=<%= @file_limit %> 3 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/tests/full.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/tests/full.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/tests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/tests/plugin.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/tests/repo/apt.pp: -------------------------------------------------------------------------------- 1 | # requires pupetlabs-apt 2 | include rabbitmq::repo::apt 3 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/tests/server.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/tests/service.pp: -------------------------------------------------------------------------------- 1 | class { 'rabbitmq::service': } 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/tests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rabbitmq/tests/site.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rabbitmq/tests/vhosts/add.pp: -------------------------------------------------------------------------------- 1 | rabbitmq_vhost { ['fooey', 'blah']: } 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/.puppet-lint.rc: -------------------------------------------------------------------------------- 1 | --with-filename 2 | #--no-80chars-check 3 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/manifests/config.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format documentation --color --backtrace 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/redis/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/redis/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/Gemfile.lock -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/Puppetfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/Puppetfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/Puppetfile.lock -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/checksums.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/manifests/gpg.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/manifests/gpg.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/manifests/group.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/manifests/group.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/manifests/rvmrc.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/manifests/rvmrc.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/manifests/system.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/manifests/system.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/templates/rvmrc.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/templates/rvmrc.erb -------------------------------------------------------------------------------- /puphpet/puppet/modules/rvm/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/rvm/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/.gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/manifests/install.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/solr/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/solr/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/Rakefile: -------------------------------------------------------------------------------- 1 | require 'bodeco_module_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/Vagrantfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/checksums.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/docs/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/docs/deploy.html -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/docs/extract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/docs/extract.html -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/docs/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/docs/file.html -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/docs/init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/docs/init.html -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/files/sample: -------------------------------------------------------------------------------- 1 | sample file to test module. 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/manifests/file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/manifests/file.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/tests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/tests/deploy.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/tests/extract.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/tests/extract.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/tests/file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/staging/tests/file.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/staging/tests/init.pp: -------------------------------------------------------------------------------- 1 | include staging 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/.gemspec -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format 3 | progress 4 | --backtrace 5 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/.sync.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/examples/init.pp: -------------------------------------------------------------------------------- 1 | include ::stdlib 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/stdlib/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/stdlib/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/.nodeset.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/Changelog -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/supervisord/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/supervisord/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/CHANGELOG.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/CONTRIBUTING.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/CONTRIBUTORS -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/Gemfile.lock -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/Guardfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/spec/classes/coverage_spec.rb: -------------------------------------------------------------------------------- 1 | at_exit { RSpec::Puppet::Coverage.report! } 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/swap_file/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/swap_file/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/ChangeLog -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/manifests/base.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/tests/base.pp: -------------------------------------------------------------------------------- 1 | include sysctl::base 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/sysctl/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/sysctl/tests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/timezone/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | *.swp 3 | Gemfile.lock 4 | spec/fixtures 5 | /coverage/ 6 | .vagrant 7 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --tty 4 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/timezone/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/timezone/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/timezone/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/timezone/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/timezone/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/timezone/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/timezone/tests/init.pp: -------------------------------------------------------------------------------- 1 | include timezone 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/CHANGELOG -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/Gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/Modulefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/README.markdown -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/vcsrepo/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/vcsrepo/spec/spec.opts -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/.fixtures.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/.gemfile -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/.gitignore -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/.travis.yml -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/LICENSE -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/README.md -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/Rakefile -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/files/empty/.placeholder: -------------------------------------------------------------------------------- 1 | # Placeholder for git 2 | -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/cron.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/cron.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/defaults.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/defaults.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/init.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/params.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/plugin.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/repo/esl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/repo/esl.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/repo/scl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/repo/scl.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/repo/sl5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/repo/sl5.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/repo/sl6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/repo/sl6.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/repo/tmz.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/repo/tmz.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/manifests/updatesd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/manifests/updatesd.pp -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/metadata.json -------------------------------------------------------------------------------- /puphpet/puppet/modules/yum/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/puppet/modules/yum/spec/spec_helper.rb -------------------------------------------------------------------------------- /puphpet/ruby/deep_merge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/ruby/deep_merge.rb -------------------------------------------------------------------------------- /puphpet/ruby/puppet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/ruby/puppet.rb -------------------------------------------------------------------------------- /puphpet/shell/ascii-art/important-notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/ascii-art/important-notices.txt -------------------------------------------------------------------------------- /puphpet/shell/ascii-art/self-promotion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/ascii-art/self-promotion.txt -------------------------------------------------------------------------------- /puphpet/shell/check-puppet-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/check-puppet-modules.sh -------------------------------------------------------------------------------- /puphpet/shell/execute-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/execute-files.sh -------------------------------------------------------------------------------- /puphpet/shell/important-notices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/important-notices.sh -------------------------------------------------------------------------------- /puphpet/shell/initial-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/initial-setup.sh -------------------------------------------------------------------------------- /puphpet/shell/install-puppet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/install-puppet.sh -------------------------------------------------------------------------------- /puphpet/shell/os-detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/os-detect.sh -------------------------------------------------------------------------------- /puphpet/shell/ssh-keygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/shell/ssh-keygen.sh -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-aws -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-digitalocean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-digitalocean -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-gce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-gce -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-ikoulacloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-ikoulacloud -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-linode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-linode -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-local -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-rackspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-rackspace -------------------------------------------------------------------------------- /puphpet/vagrant/Vagrantfile-softlayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/puphpet/vagrant/Vagrantfile-softlayer -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/DAOFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/DAOFactoryTest.php -------------------------------------------------------------------------------- /tests/FileDataManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/FileDataManagerTest.php -------------------------------------------------------------------------------- /tests/FixtureBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/FixtureBuilderTest.php -------------------------------------------------------------------------------- /tests/IsoscelesExampleControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/IsoscelesExampleControllerTest.php -------------------------------------------------------------------------------- /tests/JSONDecoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/JSONDecoderTest.php -------------------------------------------------------------------------------- /tests/LoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/LoaderTest.php -------------------------------------------------------------------------------- /tests/PDODAOTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/PDODAOTest.php -------------------------------------------------------------------------------- /tests/ProfilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/ProfilerTest.php -------------------------------------------------------------------------------- /tests/RouterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/RouterTest.php -------------------------------------------------------------------------------- /tests/SerializerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/SerializerTest.php -------------------------------------------------------------------------------- /tests/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/UtilsTest.php -------------------------------------------------------------------------------- /tests/ViewManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/ViewManagerTest.php -------------------------------------------------------------------------------- /tests/classes/class.IsoscelesUnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ginatrapani/isosceles/HEAD/tests/classes/class.IsoscelesUnitTestCase.php -------------------------------------------------------------------------------- /tests/config.sample.inc.php: -------------------------------------------------------------------------------- 1 |