├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── VERSIONS.md ├── Vagrantfile ├── app ├── USAGE ├── index.js ├── prompts.js └── templates │ ├── Vagrantfile │ ├── gitignore.tmpl │ ├── index.php.tmpl │ ├── local-config.php.tmpl │ ├── puppet │ ├── manifests │ │ └── default.pp │ └── modules │ │ ├── apache │ │ ├── .bundle │ │ │ └── config │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ └── httpd │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── a2mod.rb │ │ │ │ └── a2mod │ │ │ │ │ ├── a2mod.rb │ │ │ │ │ ├── gentoo.rb │ │ │ │ │ ├── modfix.rb │ │ │ │ │ └── redhat.rb │ │ │ │ └── type │ │ │ │ └── a2mod.rb │ │ ├── manifests │ │ │ ├── balancer.pp │ │ │ ├── balancermember.pp │ │ │ ├── default_mods.pp │ │ │ ├── dev.pp │ │ │ ├── init.pp │ │ │ ├── listen.pp │ │ │ ├── mod.pp │ │ │ ├── mod │ │ │ │ ├── alias.pp │ │ │ │ ├── auth_basic.pp │ │ │ │ ├── auth_kerb.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 │ │ │ │ ├── fcgid.pp │ │ │ │ ├── headers.pp │ │ │ │ ├── info.pp │ │ │ │ ├── ldap.pp │ │ │ │ ├── mime.pp │ │ │ │ ├── mime_magic.pp │ │ │ │ ├── mpm_event.pp │ │ │ │ ├── negotiation.pp │ │ │ │ ├── passenger.pp │ │ │ │ ├── perl.pp │ │ │ │ ├── php.pp │ │ │ │ ├── prefork.pp │ │ │ │ ├── proxy.pp │ │ │ │ ├── proxy_html.pp │ │ │ │ ├── proxy_http.pp │ │ │ │ ├── python.pp │ │ │ │ ├── reqtimeout.pp │ │ │ │ ├── rewrite.pp │ │ │ │ ├── setenvif.pp │ │ │ │ ├── ssl.pp │ │ │ │ ├── status.pp │ │ │ │ ├── userdir.pp │ │ │ │ ├── vhost_alias.pp │ │ │ │ ├── worker.pp │ │ │ │ ├── wsgi.pp │ │ │ │ └── xsendfile.pp │ │ │ ├── namevirtualhost.pp │ │ │ ├── params.pp │ │ │ ├── php.pp │ │ │ ├── proxy.pp │ │ │ ├── python.pp │ │ │ ├── ssl.pp │ │ │ └── vhost.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── apache_spec.rb │ │ │ │ ├── dev_spec.rb │ │ │ │ ├── mod │ │ │ │ │ ├── auth_kerb_spec.rb │ │ │ │ │ ├── dav_svn_spec.rb │ │ │ │ │ ├── dev_spec.rb │ │ │ │ │ ├── dir_spec.rb │ │ │ │ │ ├── fcgid_spec.rb │ │ │ │ │ ├── info_spec.rb │ │ │ │ │ ├── passenger_spec.rb │ │ │ │ │ ├── perl_spec.rb │ │ │ │ │ ├── php_spec.rb │ │ │ │ │ ├── prefork_spec.rb │ │ │ │ │ ├── proxy_html_spec.rb │ │ │ │ │ ├── python_spec.rb │ │ │ │ │ ├── ssl_spec.rb │ │ │ │ │ ├── worker_spec.rb │ │ │ │ │ └── wsgi_spec.rb │ │ │ │ └── params_spec.rb │ │ │ ├── defines │ │ │ │ ├── mod_spec.rb │ │ │ │ └── vhost_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── modules │ │ │ │ │ └── site_apache │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── fake.conf.erb │ │ │ │ └── system │ │ │ │ │ └── distro_commands.yaml │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_system.rb │ │ │ ├── system │ │ │ │ ├── basic_spec.rb │ │ │ │ ├── class_spec.rb │ │ │ │ ├── mod_php_spec.rb │ │ │ │ ├── prefork_worker_spec.rb │ │ │ │ └── vhost_spec.rb │ │ │ └── unit │ │ │ │ └── provider │ │ │ │ └── a2mod │ │ │ │ └── gentoo_spec.rb │ │ ├── templates │ │ │ ├── httpd.conf.erb │ │ │ ├── listen.erb │ │ │ ├── mod │ │ │ │ ├── alias.conf.erb │ │ │ │ ├── autoindex.conf.erb │ │ │ │ ├── cgid.conf.erb │ │ │ │ ├── dav_fs.conf.erb │ │ │ │ ├── deflate.conf.erb │ │ │ │ ├── dir.conf.erb │ │ │ │ ├── disk_cache.conf.erb │ │ │ │ ├── info.conf.erb │ │ │ │ ├── ldap.conf.erb │ │ │ │ ├── mime.conf.erb │ │ │ │ ├── mime_magic.conf.erb │ │ │ │ ├── mpm_event.conf.erb │ │ │ │ ├── negotiation.conf.erb │ │ │ │ ├── passenger.conf.erb │ │ │ │ ├── php5.conf.erb │ │ │ │ ├── prefork.conf.erb │ │ │ │ ├── proxy.conf.erb │ │ │ │ ├── proxy_html.conf.erb │ │ │ │ ├── reqtimeout.conf.erb │ │ │ │ ├── setenvif.conf.erb │ │ │ │ ├── ssl.conf.erb │ │ │ │ ├── status.conf.erb │ │ │ │ ├── userdir.conf.erb │ │ │ │ └── worker.conf.erb │ │ │ ├── namevirtualhost.erb │ │ │ ├── ports_header.erb │ │ │ ├── vhost.conf.erb │ │ │ └── vhost │ │ │ │ ├── _aliases.erb │ │ │ │ ├── _block.erb │ │ │ │ ├── _custom_fragment.erb │ │ │ │ ├── _directories.erb │ │ │ │ ├── _proxy.erb │ │ │ │ ├── _rack.erb │ │ │ │ ├── _redirect.erb │ │ │ │ ├── _requestheader.erb │ │ │ │ ├── _rewrite.erb │ │ │ │ ├── _scriptalias.erb │ │ │ │ ├── _serveralias.erb │ │ │ │ ├── _setenv.erb │ │ │ │ └── _ssl.erb │ │ └── tests │ │ │ ├── apache.pp │ │ │ ├── dev.pp │ │ │ ├── init.pp │ │ │ ├── php.pp │ │ │ ├── vhost.pp │ │ │ ├── vhost_ip_based.pp │ │ │ ├── vhost_ssl.pp │ │ │ └── vhosts_without_listen.pp │ │ ├── apt │ │ ├── .bundle │ │ │ └── config │ │ ├── .fixtures.yml │ │ ├── .forge-release │ │ │ ├── pom.xml │ │ │ ├── publish │ │ │ ├── settings.xml │ │ │ └── validate │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── backports.pp │ │ │ ├── builddep.pp │ │ │ ├── conf.pp │ │ │ ├── debian │ │ │ │ ├── testing.pp │ │ │ │ └── unstable.pp │ │ │ ├── force.pp │ │ │ ├── init.pp │ │ │ ├── key.pp │ │ │ ├── params.pp │ │ │ ├── pin.pp │ │ │ ├── ppa.pp │ │ │ ├── release.pp │ │ │ ├── source.pp │ │ │ └── update.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── apt_spec.rb │ │ │ │ ├── backports_spec.rb │ │ │ │ ├── debian_testing_spec.rb │ │ │ │ ├── debian_unstable_spec.rb │ │ │ │ ├── params_spec.rb │ │ │ │ └── release_spec.rb │ │ │ ├── defines │ │ │ │ ├── builddep_spec.rb │ │ │ │ ├── conf_spec.rb │ │ │ │ ├── force_spec.rb │ │ │ │ ├── key_spec.rb │ │ │ │ ├── pin_spec.rb │ │ │ │ ├── ppa_spec.rb │ │ │ │ └── source_spec.rb │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ ├── pin.pref.erb │ │ │ └── source.list.erb │ │ └── tests │ │ │ ├── builddep.pp │ │ │ ├── debian │ │ │ ├── testing.pp │ │ │ └── unstable.pp │ │ │ ├── force.pp │ │ │ ├── init.pp │ │ │ ├── key.pp │ │ │ ├── params.pp │ │ │ ├── pin.pp │ │ │ ├── ppa.pp │ │ │ ├── release.pp │ │ │ └── source.pp │ │ ├── bootstrap │ │ └── manifests │ │ │ └── init.pp │ │ ├── concat │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── files │ │ │ ├── concatfragments.sh │ │ │ └── null │ │ │ │ └── .gitignore │ │ ├── lib │ │ │ └── facter │ │ │ │ └── concat_basedir.rb │ │ ├── manifests │ │ │ ├── fragment.pp │ │ │ ├── init.pp │ │ │ └── setup.pp │ │ ├── metadata.json │ │ └── spec │ │ │ ├── defines │ │ │ └── init_spec.rb │ │ │ ├── fixtures │ │ │ └── manifests │ │ │ │ └── site.pp │ │ │ └── spec_helper.rb │ │ ├── git │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── init.pp │ │ │ └── resource │ │ │ │ └── config.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── git_spec.rb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ └── gitconfig.erb │ │ ├── mysql │ │ ├── .bundle │ │ │ └── config │ │ ├── .fixtures.yml │ │ ├── .forge-release │ │ │ ├── pom.xml │ │ │ ├── publish │ │ │ ├── settings.xml │ │ │ └── validate │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── TODO │ │ ├── files │ │ │ └── mysqltuner.pl │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ └── mysql_password.rb │ │ │ │ ├── provider │ │ │ │ ├── database │ │ │ │ │ └── mysql.rb │ │ │ │ ├── database_grant │ │ │ │ │ └── mysql.rb │ │ │ │ └── database_user │ │ │ │ │ └── mysql.rb │ │ │ │ └── type │ │ │ │ ├── database.rb │ │ │ │ ├── database_grant.rb │ │ │ │ └── database_user.rb │ │ ├── manifests │ │ │ ├── backup.pp │ │ │ ├── config.pp │ │ │ ├── db.pp │ │ │ ├── init.pp │ │ │ ├── java.pp │ │ │ ├── params.pp │ │ │ ├── perl.pp │ │ │ ├── php.pp │ │ │ ├── python.pp │ │ │ ├── ruby.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ │ ├── account_security.pp │ │ │ │ ├── config.pp │ │ │ │ ├── monitor.pp │ │ │ │ └── mysqltuner.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── mysql_backup_spec.rb │ │ │ │ ├── mysql_config_spec.rb │ │ │ │ ├── mysql_init_spec.rb │ │ │ │ ├── mysql_java_spec.rb │ │ │ │ ├── mysql_perl_spec.rb │ │ │ │ ├── mysql_php_spec.rb │ │ │ │ ├── mysql_python_spec.rb │ │ │ │ ├── mysql_ruby_spec.rb │ │ │ │ ├── mysql_server_account_security_spec.rb │ │ │ │ ├── mysql_server_monitor_spec.rb │ │ │ │ └── mysql_server_spec.rb │ │ │ ├── defines │ │ │ │ ├── mysql_db_spec.rb │ │ │ │ └── mysql_server_config_spec.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_system.rb │ │ │ ├── system │ │ │ │ └── mysql_spec.rb │ │ │ └── unit │ │ │ │ ├── mysql_password_spec.rb │ │ │ │ └── puppet │ │ │ │ └── provider │ │ │ │ ├── database │ │ │ │ └── mysql_spec.rb │ │ │ │ ├── database_grant │ │ │ │ └── mysql_spec.rb │ │ │ │ └── database_user │ │ │ │ └── mysql_spec.rb │ │ ├── templates │ │ │ ├── my.cnf.erb │ │ │ ├── my.cnf.pass.erb │ │ │ ├── my.conf.cnf.erb │ │ │ └── mysqlbackup.sh.erb │ │ └── tests │ │ │ ├── backup.pp │ │ │ ├── init.pp │ │ │ ├── java.pp │ │ │ ├── mysql_database.pp │ │ │ ├── mysql_grant.pp │ │ │ ├── mysql_user.pp │ │ │ ├── perl.pp │ │ │ ├── python.pp │ │ │ ├── ruby.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ ├── account_security.pp │ │ │ └── config.pp │ │ ├── nodejs │ │ └── manifests │ │ │ └── init.pp │ │ ├── php │ │ ├── Modulefile │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── init.pp │ │ │ ├── module.pp │ │ │ ├── params.pp │ │ │ ├── pear.pp │ │ │ ├── pear │ │ │ │ ├── config.pp │ │ │ │ └── module.pp │ │ │ ├── pecl │ │ │ │ └── module.pp │ │ │ └── spec.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── php_spec.rb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ └── spec.erb │ │ ├── puppi │ │ ├── Modulefile │ │ ├── README.check │ │ ├── README.deploy │ │ ├── README.info │ │ ├── README.log │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── 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 │ │ │ │ ├── predeploy.sh │ │ │ │ ├── predeploy_tar.sh │ │ │ │ ├── report_mail.sh │ │ │ │ ├── service.sh │ │ │ │ ├── svn.sh │ │ │ │ ├── wait.sh │ │ │ │ ├── yant.sh │ │ │ │ └── yum.sh │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── last_run.rb │ │ │ │ └── puppi_projects.rb │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── any2bool.rb │ │ │ │ ├── bool2ensure.rb │ │ │ │ ├── get_class_args.rb │ │ │ │ ├── get_magicvar.rb │ │ │ │ ├── is_array.rb │ │ │ │ ├── options_lookup.rb │ │ │ │ ├── params_lookup.rb │ │ │ │ └── url_parse.rb │ │ ├── manifests │ │ │ ├── check.pp │ │ │ ├── dependencies.pp │ │ │ ├── deploy.pp │ │ │ ├── extras.pp │ │ │ ├── helper.pp │ │ │ ├── helpers.pp │ │ │ ├── info.pp │ │ │ ├── info │ │ │ │ ├── instance.pp │ │ │ │ ├── module.pp │ │ │ │ └── readme.pp │ │ │ ├── init.pp │ │ │ ├── initialize.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 │ │ │ │ ├── maven.pp │ │ │ │ ├── mysql.pp │ │ │ │ ├── service.pp │ │ │ │ ├── svn.pp │ │ │ │ ├── tar.pp │ │ │ │ ├── war.pp │ │ │ │ ├── y4maven.pp │ │ │ │ └── yum.pp │ │ │ ├── report.pp │ │ │ ├── rollback.pp │ │ │ ├── run.pp │ │ │ ├── skel.pp │ │ │ ├── todo.pp │ │ │ ├── two.pp │ │ │ └── ze.pp │ │ ├── metadata.json │ │ ├── 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 │ │ │ ├── log.erb │ │ │ ├── project │ │ │ └── config.erb │ │ │ ├── puppi.conf.erb │ │ │ ├── puppi.erb │ │ │ └── todo.erb │ │ └── stdlib │ │ ├── CHANGELOG │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.markdown │ │ ├── README_DEVELOPER.markdown │ │ ├── README_SPECS.markdown │ │ ├── RELEASE_PROCESS.markdown │ │ ├── Rakefile │ │ ├── lib │ │ ├── facter │ │ │ ├── facter_dot_d.rb │ │ │ ├── pe_version.rb │ │ │ ├── puppet_vardir.rb │ │ │ ├── root_home.rb │ │ │ └── util │ │ │ │ └── puppet_settings.rb │ │ └── puppet │ │ │ ├── parser │ │ │ └── functions │ │ │ │ ├── abs.rb │ │ │ │ ├── any2array.rb │ │ │ │ ├── bool2num.rb │ │ │ │ ├── capitalize.rb │ │ │ │ ├── chomp.rb │ │ │ │ ├── chop.rb │ │ │ │ ├── concat.rb │ │ │ │ ├── count.rb │ │ │ │ ├── defined_with_params.rb │ │ │ │ ├── delete.rb │ │ │ │ ├── delete_at.rb │ │ │ │ ├── dirname.rb │ │ │ │ ├── downcase.rb │ │ │ │ ├── empty.rb │ │ │ │ ├── ensure_packages.rb │ │ │ │ ├── ensure_resource.rb │ │ │ │ ├── flatten.rb │ │ │ │ ├── floor.rb │ │ │ │ ├── fqdn_rotate.rb │ │ │ │ ├── get_module_path.rb │ │ │ │ ├── getparam.rb │ │ │ │ ├── getvar.rb │ │ │ │ ├── grep.rb │ │ │ │ ├── has_interface_with.rb │ │ │ │ ├── has_ip_address.rb │ │ │ │ ├── has_ip_network.rb │ │ │ │ ├── has_key.rb │ │ │ │ ├── hash.rb │ │ │ │ ├── is_array.rb │ │ │ │ ├── is_domain_name.rb │ │ │ │ ├── is_float.rb │ │ │ │ ├── is_function_available.rb │ │ │ │ ├── is_hash.rb │ │ │ │ ├── is_integer.rb │ │ │ │ ├── is_ip_address.rb │ │ │ │ ├── is_mac_address.rb │ │ │ │ ├── is_numeric.rb │ │ │ │ ├── is_string.rb │ │ │ │ ├── join.rb │ │ │ │ ├── join_keys_to_values.rb │ │ │ │ ├── keys.rb │ │ │ │ ├── loadyaml.rb │ │ │ │ ├── lstrip.rb │ │ │ │ ├── max.rb │ │ │ │ ├── member.rb │ │ │ │ ├── merge.rb │ │ │ │ ├── min.rb │ │ │ │ ├── num2bool.rb │ │ │ │ ├── parsejson.rb │ │ │ │ ├── parseyaml.rb │ │ │ │ ├── pick.rb │ │ │ │ ├── prefix.rb │ │ │ │ ├── range.rb │ │ │ │ ├── reject.rb │ │ │ │ ├── reverse.rb │ │ │ │ ├── rstrip.rb │ │ │ │ ├── shuffle.rb │ │ │ │ ├── size.rb │ │ │ │ ├── sort.rb │ │ │ │ ├── squeeze.rb │ │ │ │ ├── str2bool.rb │ │ │ │ ├── str2saltedsha512.rb │ │ │ │ ├── strftime.rb │ │ │ │ ├── strip.rb │ │ │ │ ├── suffix.rb │ │ │ │ ├── swapcase.rb │ │ │ │ ├── time.rb │ │ │ │ ├── to_bytes.rb │ │ │ │ ├── type.rb │ │ │ │ ├── unique.rb │ │ │ │ ├── upcase.rb │ │ │ │ ├── uriescape.rb │ │ │ │ ├── validate_absolute_path.rb │ │ │ │ ├── validate_array.rb │ │ │ │ ├── validate_augeas.rb │ │ │ │ ├── validate_bool.rb │ │ │ │ ├── validate_cmd.rb │ │ │ │ ├── validate_hash.rb │ │ │ │ ├── validate_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 │ │ ├── classes │ │ │ └── anchor_spec.rb │ │ ├── fixtures │ │ │ └── manifests │ │ │ │ └── site.pp │ │ ├── functions │ │ │ ├── defined_with_params_spec.rb │ │ │ ├── ensure_packages_spec.rb │ │ │ ├── ensure_resource_spec.rb │ │ │ └── getparam_spec.rb │ │ ├── monkey_patches │ │ │ ├── alias_should_to_must.rb │ │ │ └── publicize_methods.rb │ │ ├── spec.opts │ │ ├── spec_helper.rb │ │ ├── unit │ │ │ ├── facter │ │ │ │ ├── pe_required_facts_spec.rb │ │ │ │ ├── pe_version_spec.rb │ │ │ │ ├── root_home_spec.rb │ │ │ │ └── util │ │ │ │ │ └── puppet_settings_spec.rb │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── abs_spec.rb │ │ │ │ │ ├── any2array_spec.rb │ │ │ │ │ ├── bool2num_spec.rb │ │ │ │ │ ├── capitalize_spec.rb │ │ │ │ │ ├── chomp_spec.rb │ │ │ │ │ ├── chop_spec.rb │ │ │ │ │ ├── concat_spec.rb │ │ │ │ │ ├── count_spec.rb │ │ │ │ │ ├── delete_at_spec.rb │ │ │ │ │ ├── delete_spec.rb │ │ │ │ │ ├── dirname_spec.rb │ │ │ │ │ ├── downcase_spec.rb │ │ │ │ │ ├── empty_spec.rb │ │ │ │ │ ├── flatten_spec.rb │ │ │ │ │ ├── floor_spec.rb │ │ │ │ │ ├── fqdn_rotate_spec.rb │ │ │ │ │ ├── get_module_path_spec.rb │ │ │ │ │ ├── getvar_spec.rb │ │ │ │ │ ├── grep_spec.rb │ │ │ │ │ ├── has_interface_with_spec.rb │ │ │ │ │ ├── has_ip_address_spec.rb │ │ │ │ │ ├── has_ip_network_spec.rb │ │ │ │ │ ├── has_key_spec.rb │ │ │ │ │ ├── hash_spec.rb │ │ │ │ │ ├── is_array_spec.rb │ │ │ │ │ ├── is_domain_name_spec.rb │ │ │ │ │ ├── is_float_spec.rb │ │ │ │ │ ├── is_function_available.rb │ │ │ │ │ ├── is_hash_spec.rb │ │ │ │ │ ├── is_integer_spec.rb │ │ │ │ │ ├── is_ip_address_spec.rb │ │ │ │ │ ├── is_mac_address_spec.rb │ │ │ │ │ ├── is_numeric_spec.rb │ │ │ │ │ ├── is_string_spec.rb │ │ │ │ │ ├── join_keys_to_values_spec.rb │ │ │ │ │ ├── join_spec.rb │ │ │ │ │ ├── keys_spec.rb │ │ │ │ │ ├── lstrip_spec.rb │ │ │ │ │ ├── max_spec.rb │ │ │ │ │ ├── member_spec.rb │ │ │ │ │ ├── merge_spec.rb │ │ │ │ │ ├── min_spec.rb │ │ │ │ │ ├── num2bool_spec.rb │ │ │ │ │ ├── parsejson_spec.rb │ │ │ │ │ ├── parseyaml_spec.rb │ │ │ │ │ ├── pick_spec.rb │ │ │ │ │ ├── prefix_spec.rb │ │ │ │ │ ├── range_spec.rb │ │ │ │ │ ├── reject_spec.rb │ │ │ │ │ ├── reverse_spec.rb │ │ │ │ │ ├── rstrip_spec.rb │ │ │ │ │ ├── shuffle_spec.rb │ │ │ │ │ ├── size_spec.rb │ │ │ │ │ ├── sort_spec.rb │ │ │ │ │ ├── squeeze_spec.rb │ │ │ │ │ ├── str2bool_spec.rb │ │ │ │ │ ├── str2saltedsha512_spec.rb │ │ │ │ │ ├── strftime_spec.rb │ │ │ │ │ ├── strip_spec.rb │ │ │ │ │ ├── suffix_spec.rb │ │ │ │ │ ├── swapcase_spec.rb │ │ │ │ │ ├── time_spec.rb │ │ │ │ │ ├── to_bytes_spec.rb │ │ │ │ │ ├── type_spec.rb │ │ │ │ │ ├── unique_spec.rb │ │ │ │ │ ├── upcase_spec.rb │ │ │ │ │ ├── uriescape_spec.rb │ │ │ │ │ ├── validate_absolute_path_spec.rb │ │ │ │ │ ├── validate_array_spec.rb │ │ │ │ │ ├── validate_augeas_spec.rb │ │ │ │ │ ├── validate_bool_spec.rb │ │ │ │ │ ├── validate_cmd_spec.rb │ │ │ │ │ ├── validate_hash_spec.rb │ │ │ │ │ ├── validate_re_spec.rb │ │ │ │ │ ├── validate_slength_spec.rb │ │ │ │ │ ├── validate_string_spec.rb │ │ │ │ │ ├── values_at_spec.rb │ │ │ │ │ ├── values_spec.rb │ │ │ │ │ └── zip_spec.rb │ │ │ │ ├── provider │ │ │ │ └── file_line │ │ │ │ │ └── ruby_spec.rb │ │ │ │ └── type │ │ │ │ ├── anchor_spec.rb │ │ │ │ └── file_line_spec.rb │ │ └── watchr.rb │ │ └── tests │ │ ├── file_line.pp │ │ ├── has_interface_with.pp │ │ ├── has_ip_address.pp │ │ ├── has_ip_network.pp │ │ └── init.pp │ └── wp-config.php.tmpl ├── package.json ├── plugin └── index.js ├── puppet ├── manifests │ └── default.pp └── modules │ ├── apache │ ├── .bundle │ │ └── config │ ├── .fixtures.yml │ ├── .nodeset.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── LICENSE │ ├── Modulefile │ ├── README.md │ ├── README.passenger.md │ ├── Rakefile │ ├── files │ │ └── httpd │ ├── lib │ │ └── puppet │ │ │ ├── provider │ │ │ ├── a2mod.rb │ │ │ └── a2mod │ │ │ │ ├── a2mod.rb │ │ │ │ ├── gentoo.rb │ │ │ │ ├── modfix.rb │ │ │ │ └── redhat.rb │ │ │ └── type │ │ │ └── a2mod.rb │ ├── manifests │ │ ├── balancer.pp │ │ ├── balancermember.pp │ │ ├── confd │ │ │ └── no_accf.pp │ │ ├── default_confd_files.pp │ │ ├── default_mods.pp │ │ ├── default_mods │ │ │ └── load.pp │ │ ├── dev.pp │ │ ├── init.pp │ │ ├── listen.pp │ │ ├── mod.pp │ │ ├── mod │ │ │ ├── alias.pp │ │ │ ├── auth_basic.pp │ │ │ ├── auth_kerb.pp │ │ │ ├── authnz_ldap.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 │ │ │ ├── fastcgi.pp │ │ │ ├── fcgid.pp │ │ │ ├── headers.pp │ │ │ ├── include.pp │ │ │ ├── info.pp │ │ │ ├── itk.pp │ │ │ ├── ldap.pp │ │ │ ├── mime.pp │ │ │ ├── mime_magic.pp │ │ │ ├── negotiation.pp │ │ │ ├── nss.pp │ │ │ ├── passenger.pp │ │ │ ├── perl.pp │ │ │ ├── peruser.pp │ │ │ ├── php.pp │ │ │ ├── prefork.pp │ │ │ ├── proxy.pp │ │ │ ├── proxy_ajp.pp │ │ │ ├── proxy_balancer.pp │ │ │ ├── proxy_html.pp │ │ │ ├── proxy_http.pp │ │ │ ├── python.pp │ │ │ ├── reqtimeout.pp │ │ │ ├── rewrite.pp │ │ │ ├── rpaf.pp │ │ │ ├── setenvif.pp │ │ │ ├── ssl.pp │ │ │ ├── status.pp │ │ │ ├── suphp.pp │ │ │ ├── userdir.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 │ │ ├── service.pp │ │ ├── ssl.pp │ │ ├── version.pp │ │ └── vhost.pp │ ├── metadata.json │ ├── spec │ │ ├── acceptance │ │ │ ├── apache_parameters_spec.rb │ │ │ ├── apache_ssl_spec.rb │ │ │ ├── basic_spec.rb │ │ │ ├── class_spec.rb │ │ │ ├── default_mods_spec.rb │ │ │ ├── itk_spec.rb │ │ │ ├── mod_php_spec.rb │ │ │ ├── mod_suphp_spec.rb │ │ │ ├── nodesets │ │ │ │ ├── centos-59-x64.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-1310-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 │ │ │ │ ├── auth_kerb_spec.rb │ │ │ │ ├── authnz_ldap_spec.rb │ │ │ │ ├── dav_svn_spec.rb │ │ │ │ ├── dev_spec.rb │ │ │ │ ├── dir_spec.rb │ │ │ │ ├── event_spec.rb │ │ │ │ ├── fastcgi_spec.rb │ │ │ │ ├── fcgid_spec.rb │ │ │ │ ├── info_spec.rb │ │ │ │ ├── itk_spec.rb │ │ │ │ ├── mime_magic_spec.rb │ │ │ │ ├── passenger_spec.rb │ │ │ │ ├── perl_spec.rb │ │ │ │ ├── peruser_spec.rb │ │ │ │ ├── php_spec.rb │ │ │ │ ├── prefork_spec.rb │ │ │ │ ├── proxy_html_spec.rb │ │ │ │ ├── python_spec.rb │ │ │ │ ├── rpaf_spec.rb │ │ │ │ ├── ssl_spec.rb │ │ │ │ ├── status_spec.rb │ │ │ │ ├── suphp_spec.rb │ │ │ │ ├── worker_spec.rb │ │ │ │ └── wsgi_spec.rb │ │ │ ├── params_spec.rb │ │ │ └── service_spec.rb │ │ ├── defines │ │ │ ├── mod_spec.rb │ │ │ └── vhost_spec.rb │ │ ├── fixtures │ │ │ └── modules │ │ │ │ └── site_apache │ │ │ │ └── templates │ │ │ │ └── fake.conf.erb │ │ ├── spec.opts │ │ ├── spec_helper.rb │ │ ├── spec_helper_acceptance.rb │ │ └── unit │ │ │ └── provider │ │ │ └── a2mod │ │ │ └── gentoo_spec.rb │ ├── templates │ │ ├── confd │ │ │ └── no-accf.conf.erb │ │ ├── httpd.conf.erb │ │ ├── listen.erb │ │ ├── mod │ │ │ ├── alias.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 │ │ │ ├── fastcgi.conf.erb │ │ │ ├── info.conf.erb │ │ │ ├── itk.conf.erb │ │ │ ├── ldap.conf.erb │ │ │ ├── mime.conf.erb │ │ │ ├── mime_magic.conf.erb │ │ │ ├── mpm_event.conf.erb │ │ │ ├── negotiation.conf.erb │ │ │ ├── nss.conf.erb │ │ │ ├── passenger.conf.erb │ │ │ ├── peruser.conf.erb │ │ │ ├── php5.conf.erb │ │ │ ├── prefork.conf.erb │ │ │ ├── proxy.conf.erb │ │ │ ├── proxy_html.conf.erb │ │ │ ├── reqtimeout.conf.erb │ │ │ ├── rpaf.conf.erb │ │ │ ├── setenvif.conf.erb │ │ │ ├── ssl.conf.erb │ │ │ ├── status.conf.erb │ │ │ ├── suphp.conf.erb │ │ │ ├── userdir.conf.erb │ │ │ ├── worker.conf.erb │ │ │ └── wsgi.conf.erb │ │ ├── namevirtualhost.erb │ │ ├── ports_header.erb │ │ ├── vhost.conf.erb │ │ └── vhost │ │ │ ├── _aliases.erb │ │ │ ├── _block.erb │ │ │ ├── _custom_fragment.erb │ │ │ ├── _directories.erb │ │ │ ├── _error_document.erb │ │ │ ├── _fastcgi.erb │ │ │ ├── _header.erb │ │ │ ├── _itk.erb │ │ │ ├── _php_admin.erb │ │ │ ├── _proxy.erb │ │ │ ├── _rack.erb │ │ │ ├── _redirect.erb │ │ │ ├── _requestheader.erb │ │ │ ├── _rewrite.erb │ │ │ ├── _scriptalias.erb │ │ │ ├── _serveralias.erb │ │ │ ├── _setenv.erb │ │ │ ├── _ssl.erb │ │ │ ├── _suphp.erb │ │ │ └── _wsgi.erb │ └── tests │ │ ├── apache.pp │ │ ├── dev.pp │ │ ├── init.pp │ │ ├── mod_load_params.pp │ │ ├── mods.pp │ │ ├── mods_custom.pp │ │ ├── php.pp │ │ ├── vhost.pp │ │ ├── vhost_directories.pp │ │ ├── vhost_ip_based.pp │ │ ├── vhost_ssl.pp │ │ └── vhosts_without_listen.pp │ ├── apt │ ├── .bundle │ │ └── config │ ├── .fixtures.yml │ ├── .forge-release │ │ ├── pom.xml │ │ ├── publish │ │ ├── settings.xml │ │ └── validate │ ├── .travis.yml │ ├── CHANGELOG │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Modulefile │ ├── README.md │ ├── Rakefile │ ├── manifests │ │ ├── backports.pp │ │ ├── builddep.pp │ │ ├── conf.pp │ │ ├── debian │ │ │ ├── testing.pp │ │ │ └── unstable.pp │ │ ├── force.pp │ │ ├── init.pp │ │ ├── key.pp │ │ ├── params.pp │ │ ├── pin.pp │ │ ├── ppa.pp │ │ ├── release.pp │ │ ├── source.pp │ │ └── update.pp │ ├── metadata.json │ ├── spec │ │ ├── classes │ │ │ ├── apt_spec.rb │ │ │ ├── backports_spec.rb │ │ │ ├── debian_testing_spec.rb │ │ │ ├── debian_unstable_spec.rb │ │ │ ├── params_spec.rb │ │ │ └── release_spec.rb │ │ ├── defines │ │ │ ├── builddep_spec.rb │ │ │ ├── conf_spec.rb │ │ │ ├── force_spec.rb │ │ │ ├── key_spec.rb │ │ │ ├── pin_spec.rb │ │ │ ├── ppa_spec.rb │ │ │ └── source_spec.rb │ │ └── spec_helper.rb │ ├── templates │ │ ├── pin.pref.erb │ │ └── source.list.erb │ └── tests │ │ ├── builddep.pp │ │ ├── debian │ │ ├── testing.pp │ │ └── unstable.pp │ │ ├── force.pp │ │ ├── init.pp │ │ ├── key.pp │ │ ├── params.pp │ │ ├── pin.pp │ │ ├── ppa.pp │ │ ├── release.pp │ │ └── source.pp │ ├── bootstrap │ └── manifests │ │ └── init.pp │ ├── concat │ ├── CHANGELOG │ ├── LICENSE │ ├── Modulefile │ ├── README.markdown │ ├── Rakefile │ ├── files │ │ ├── concatfragments.sh │ │ └── null │ │ │ └── .gitignore │ ├── lib │ │ └── facter │ │ │ └── concat_basedir.rb │ ├── manifests │ │ ├── fragment.pp │ │ ├── init.pp │ │ └── setup.pp │ ├── metadata.json │ └── spec │ │ ├── defines │ │ └── init_spec.rb │ │ ├── fixtures │ │ └── manifests │ │ │ └── site.pp │ │ └── spec_helper.rb │ ├── git │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Modulefile │ ├── README.md │ ├── Rakefile │ ├── manifests │ │ ├── init.pp │ │ └── resource │ │ │ └── config.pp │ ├── metadata.json │ ├── spec │ │ ├── classes │ │ │ └── git_spec.rb │ │ └── spec_helper.rb │ └── templates │ │ └── gitconfig.erb │ ├── mysql │ ├── .bundle │ │ └── config │ ├── .fixtures.yml │ ├── .forge-release │ │ ├── pom.xml │ │ ├── publish │ │ ├── settings.xml │ │ └── validate │ ├── .nodeset.yml │ ├── .travis.yml │ ├── CHANGELOG │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Modulefile │ ├── README.md │ ├── Rakefile │ ├── TODO │ ├── files │ │ └── mysqltuner.pl │ ├── lib │ │ └── puppet │ │ │ ├── parser │ │ │ └── functions │ │ │ │ └── mysql_password.rb │ │ │ ├── provider │ │ │ ├── database │ │ │ │ └── mysql.rb │ │ │ ├── database_grant │ │ │ │ └── mysql.rb │ │ │ └── database_user │ │ │ │ └── mysql.rb │ │ │ └── type │ │ │ ├── database.rb │ │ │ ├── database_grant.rb │ │ │ └── database_user.rb │ ├── manifests │ │ ├── backup.pp │ │ ├── config.pp │ │ ├── db.pp │ │ ├── init.pp │ │ ├── java.pp │ │ ├── params.pp │ │ ├── perl.pp │ │ ├── php.pp │ │ ├── python.pp │ │ ├── ruby.pp │ │ ├── server.pp │ │ └── server │ │ │ ├── account_security.pp │ │ │ ├── config.pp │ │ │ ├── monitor.pp │ │ │ └── mysqltuner.pp │ ├── metadata.json │ ├── spec │ │ ├── classes │ │ │ ├── mysql_backup_spec.rb │ │ │ ├── mysql_config_spec.rb │ │ │ ├── mysql_init_spec.rb │ │ │ ├── mysql_java_spec.rb │ │ │ ├── mysql_perl_spec.rb │ │ │ ├── mysql_php_spec.rb │ │ │ ├── mysql_python_spec.rb │ │ │ ├── mysql_ruby_spec.rb │ │ │ ├── mysql_server_account_security_spec.rb │ │ │ ├── mysql_server_monitor_spec.rb │ │ │ └── mysql_server_spec.rb │ │ ├── defines │ │ │ ├── mysql_db_spec.rb │ │ │ └── mysql_server_config_spec.rb │ │ ├── spec.opts │ │ ├── spec_helper.rb │ │ ├── spec_helper_system.rb │ │ ├── system │ │ │ └── mysql_spec.rb │ │ └── unit │ │ │ ├── mysql_password_spec.rb │ │ │ └── puppet │ │ │ └── provider │ │ │ ├── database │ │ │ └── mysql_spec.rb │ │ │ ├── database_grant │ │ │ └── mysql_spec.rb │ │ │ └── database_user │ │ │ └── mysql_spec.rb │ ├── templates │ │ ├── my.cnf.erb │ │ ├── my.cnf.pass.erb │ │ ├── my.conf.cnf.erb │ │ └── mysqlbackup.sh.erb │ └── tests │ │ ├── backup.pp │ │ ├── init.pp │ │ ├── java.pp │ │ ├── mysql_database.pp │ │ ├── mysql_grant.pp │ │ ├── mysql_user.pp │ │ ├── perl.pp │ │ ├── python.pp │ │ ├── ruby.pp │ │ ├── server.pp │ │ └── server │ │ ├── account_security.pp │ │ └── config.pp │ ├── nodejs │ └── manifests │ │ └── init.pp │ ├── php │ ├── Modulefile │ ├── README.rdoc │ ├── Rakefile │ ├── manifests │ │ ├── init.pp │ │ ├── module.pp │ │ ├── params.pp │ │ ├── pear.pp │ │ ├── pear │ │ │ ├── config.pp │ │ │ └── module.pp │ │ ├── pecl │ │ │ └── module.pp │ │ └── spec.pp │ ├── metadata.json │ ├── spec │ │ ├── classes │ │ │ └── php_spec.rb │ │ └── spec_helper.rb │ └── templates │ │ └── spec.erb │ ├── puppi │ ├── Modulefile │ ├── README.check │ ├── README.deploy │ ├── README.info │ ├── README.log │ ├── README.rdoc │ ├── Rakefile │ ├── 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 │ │ │ ├── predeploy.sh │ │ │ ├── predeploy_tar.sh │ │ │ ├── report_mail.sh │ │ │ ├── service.sh │ │ │ ├── svn.sh │ │ │ ├── wait.sh │ │ │ ├── yant.sh │ │ │ └── yum.sh │ ├── lib │ │ ├── facter │ │ │ ├── last_run.rb │ │ │ └── puppi_projects.rb │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ ├── any2bool.rb │ │ │ ├── bool2ensure.rb │ │ │ ├── get_class_args.rb │ │ │ ├── get_magicvar.rb │ │ │ ├── is_array.rb │ │ │ ├── options_lookup.rb │ │ │ ├── params_lookup.rb │ │ │ └── url_parse.rb │ ├── manifests │ │ ├── check.pp │ │ ├── dependencies.pp │ │ ├── deploy.pp │ │ ├── extras.pp │ │ ├── helper.pp │ │ ├── helpers.pp │ │ ├── info.pp │ │ ├── info │ │ │ ├── instance.pp │ │ │ ├── module.pp │ │ │ └── readme.pp │ │ ├── init.pp │ │ ├── initialize.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 │ │ │ ├── maven.pp │ │ │ ├── mysql.pp │ │ │ ├── service.pp │ │ │ ├── svn.pp │ │ │ ├── tar.pp │ │ │ ├── war.pp │ │ │ ├── y4maven.pp │ │ │ └── yum.pp │ │ ├── report.pp │ │ ├── rollback.pp │ │ ├── run.pp │ │ ├── skel.pp │ │ ├── todo.pp │ │ ├── two.pp │ │ └── ze.pp │ ├── metadata.json │ ├── 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 │ │ ├── log.erb │ │ ├── project │ │ └── config.erb │ │ ├── puppi.conf.erb │ │ ├── puppi.erb │ │ └── todo.erb │ └── stdlib │ ├── CHANGELOG │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── LICENSE │ ├── Modulefile │ ├── README.markdown │ ├── README_DEVELOPER.markdown │ ├── README_SPECS.markdown │ ├── RELEASE_PROCESS.markdown │ ├── Rakefile │ ├── lib │ ├── facter │ │ ├── facter_dot_d.rb │ │ ├── pe_version.rb │ │ ├── puppet_vardir.rb │ │ ├── root_home.rb │ │ └── util │ │ │ └── puppet_settings.rb │ └── puppet │ │ ├── parser │ │ └── functions │ │ │ ├── abs.rb │ │ │ ├── any2array.rb │ │ │ ├── bool2num.rb │ │ │ ├── capitalize.rb │ │ │ ├── chomp.rb │ │ │ ├── chop.rb │ │ │ ├── concat.rb │ │ │ ├── count.rb │ │ │ ├── defined_with_params.rb │ │ │ ├── delete.rb │ │ │ ├── delete_at.rb │ │ │ ├── dirname.rb │ │ │ ├── downcase.rb │ │ │ ├── empty.rb │ │ │ ├── ensure_packages.rb │ │ │ ├── ensure_resource.rb │ │ │ ├── flatten.rb │ │ │ ├── floor.rb │ │ │ ├── fqdn_rotate.rb │ │ │ ├── get_module_path.rb │ │ │ ├── getparam.rb │ │ │ ├── getvar.rb │ │ │ ├── grep.rb │ │ │ ├── has_interface_with.rb │ │ │ ├── has_ip_address.rb │ │ │ ├── has_ip_network.rb │ │ │ ├── has_key.rb │ │ │ ├── hash.rb │ │ │ ├── is_array.rb │ │ │ ├── is_domain_name.rb │ │ │ ├── is_float.rb │ │ │ ├── is_function_available.rb │ │ │ ├── is_hash.rb │ │ │ ├── is_integer.rb │ │ │ ├── is_ip_address.rb │ │ │ ├── is_mac_address.rb │ │ │ ├── is_numeric.rb │ │ │ ├── is_string.rb │ │ │ ├── join.rb │ │ │ ├── join_keys_to_values.rb │ │ │ ├── keys.rb │ │ │ ├── loadyaml.rb │ │ │ ├── lstrip.rb │ │ │ ├── max.rb │ │ │ ├── member.rb │ │ │ ├── merge.rb │ │ │ ├── min.rb │ │ │ ├── num2bool.rb │ │ │ ├── parsejson.rb │ │ │ ├── parseyaml.rb │ │ │ ├── pick.rb │ │ │ ├── prefix.rb │ │ │ ├── range.rb │ │ │ ├── reject.rb │ │ │ ├── reverse.rb │ │ │ ├── rstrip.rb │ │ │ ├── shuffle.rb │ │ │ ├── size.rb │ │ │ ├── sort.rb │ │ │ ├── squeeze.rb │ │ │ ├── str2bool.rb │ │ │ ├── str2saltedsha512.rb │ │ │ ├── strftime.rb │ │ │ ├── strip.rb │ │ │ ├── suffix.rb │ │ │ ├── swapcase.rb │ │ │ ├── time.rb │ │ │ ├── to_bytes.rb │ │ │ ├── type.rb │ │ │ ├── unique.rb │ │ │ ├── upcase.rb │ │ │ ├── uriescape.rb │ │ │ ├── validate_absolute_path.rb │ │ │ ├── validate_array.rb │ │ │ ├── validate_augeas.rb │ │ │ ├── validate_bool.rb │ │ │ ├── validate_cmd.rb │ │ │ ├── validate_hash.rb │ │ │ ├── validate_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 │ ├── classes │ │ └── anchor_spec.rb │ ├── fixtures │ │ └── manifests │ │ │ └── site.pp │ ├── functions │ │ ├── defined_with_params_spec.rb │ │ ├── ensure_packages_spec.rb │ │ ├── ensure_resource_spec.rb │ │ └── getparam_spec.rb │ ├── monkey_patches │ │ ├── alias_should_to_must.rb │ │ └── publicize_methods.rb │ ├── spec.opts │ ├── spec_helper.rb │ ├── unit │ │ ├── facter │ │ │ ├── pe_required_facts_spec.rb │ │ │ ├── pe_version_spec.rb │ │ │ ├── root_home_spec.rb │ │ │ └── util │ │ │ │ └── puppet_settings_spec.rb │ │ └── puppet │ │ │ ├── parser │ │ │ └── functions │ │ │ │ ├── abs_spec.rb │ │ │ │ ├── any2array_spec.rb │ │ │ │ ├── bool2num_spec.rb │ │ │ │ ├── capitalize_spec.rb │ │ │ │ ├── chomp_spec.rb │ │ │ │ ├── chop_spec.rb │ │ │ │ ├── concat_spec.rb │ │ │ │ ├── count_spec.rb │ │ │ │ ├── delete_at_spec.rb │ │ │ │ ├── delete_spec.rb │ │ │ │ ├── dirname_spec.rb │ │ │ │ ├── downcase_spec.rb │ │ │ │ ├── empty_spec.rb │ │ │ │ ├── flatten_spec.rb │ │ │ │ ├── floor_spec.rb │ │ │ │ ├── fqdn_rotate_spec.rb │ │ │ │ ├── get_module_path_spec.rb │ │ │ │ ├── getvar_spec.rb │ │ │ │ ├── grep_spec.rb │ │ │ │ ├── has_interface_with_spec.rb │ │ │ │ ├── has_ip_address_spec.rb │ │ │ │ ├── has_ip_network_spec.rb │ │ │ │ ├── has_key_spec.rb │ │ │ │ ├── hash_spec.rb │ │ │ │ ├── is_array_spec.rb │ │ │ │ ├── is_domain_name_spec.rb │ │ │ │ ├── is_float_spec.rb │ │ │ │ ├── is_function_available.rb │ │ │ │ ├── is_hash_spec.rb │ │ │ │ ├── is_integer_spec.rb │ │ │ │ ├── is_ip_address_spec.rb │ │ │ │ ├── is_mac_address_spec.rb │ │ │ │ ├── is_numeric_spec.rb │ │ │ │ ├── is_string_spec.rb │ │ │ │ ├── join_keys_to_values_spec.rb │ │ │ │ ├── join_spec.rb │ │ │ │ ├── keys_spec.rb │ │ │ │ ├── lstrip_spec.rb │ │ │ │ ├── max_spec.rb │ │ │ │ ├── member_spec.rb │ │ │ │ ├── merge_spec.rb │ │ │ │ ├── min_spec.rb │ │ │ │ ├── num2bool_spec.rb │ │ │ │ ├── parsejson_spec.rb │ │ │ │ ├── parseyaml_spec.rb │ │ │ │ ├── pick_spec.rb │ │ │ │ ├── prefix_spec.rb │ │ │ │ ├── range_spec.rb │ │ │ │ ├── reject_spec.rb │ │ │ │ ├── reverse_spec.rb │ │ │ │ ├── rstrip_spec.rb │ │ │ │ ├── shuffle_spec.rb │ │ │ │ ├── size_spec.rb │ │ │ │ ├── sort_spec.rb │ │ │ │ ├── squeeze_spec.rb │ │ │ │ ├── str2bool_spec.rb │ │ │ │ ├── str2saltedsha512_spec.rb │ │ │ │ ├── strftime_spec.rb │ │ │ │ ├── strip_spec.rb │ │ │ │ ├── suffix_spec.rb │ │ │ │ ├── swapcase_spec.rb │ │ │ │ ├── time_spec.rb │ │ │ │ ├── to_bytes_spec.rb │ │ │ │ ├── type_spec.rb │ │ │ │ ├── unique_spec.rb │ │ │ │ ├── upcase_spec.rb │ │ │ │ ├── uriescape_spec.rb │ │ │ │ ├── validate_absolute_path_spec.rb │ │ │ │ ├── validate_array_spec.rb │ │ │ │ ├── validate_augeas_spec.rb │ │ │ │ ├── validate_bool_spec.rb │ │ │ │ ├── validate_cmd_spec.rb │ │ │ │ ├── validate_hash_spec.rb │ │ │ │ ├── validate_re_spec.rb │ │ │ │ ├── validate_slength_spec.rb │ │ │ │ ├── validate_string_spec.rb │ │ │ │ ├── values_at_spec.rb │ │ │ │ ├── values_spec.rb │ │ │ │ └── zip_spec.rb │ │ │ ├── provider │ │ │ └── file_line │ │ │ │ └── ruby_spec.rb │ │ │ └── type │ │ │ ├── anchor_spec.rb │ │ │ └── file_line_spec.rb │ └── watchr.rb │ └── tests │ ├── file_line.pp │ ├── has_interface_with.pp │ ├── has_ip_address.pp │ ├── has_ip_network.pp │ └── init.pp ├── test ├── fixtures │ ├── .yeopress │ └── dir │ │ └── .yeopress ├── tmp │ └── .gitkeep ├── unit │ ├── art.js │ ├── config.js │ └── log.js └── wordpress.js ├── theme ├── USAGE └── index.js └── util ├── art.js ├── config.js ├── log.js └── wordpress.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vagrant 3 | test/site/* 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/VERSIONS.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/USAGE -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/index.js -------------------------------------------------------------------------------- /app/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/prompts.js -------------------------------------------------------------------------------- /app/templates/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/Vagrantfile -------------------------------------------------------------------------------- /app/templates/gitignore.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/gitignore.tmpl -------------------------------------------------------------------------------- /app/templates/index.php.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/index.php.tmpl -------------------------------------------------------------------------------- /app/templates/local-config.php.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/local-config.php.tmpl -------------------------------------------------------------------------------- /app/templates/puppet/manifests/default.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/manifests/default.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: development 3 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/.fixtures.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/.nodeset.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/.travis.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/CHANGELOG -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/Gemfile -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/Gemfile.lock -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/LICENSE -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/README.md -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/Rakefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/files/httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/files/httpd -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/balancer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/balancer.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/dev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/dev.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/listen.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/listen.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/alias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/alias.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/cache.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/cgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/cgi.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/cgid.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/cgid.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/dav.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/dav.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/dav_fs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/dav_fs.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/dev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/dev.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/dir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/dir.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/fcgid.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/fcgid.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/info.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/info.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/ldap.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/ldap.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/mime.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/mime.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/perl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/perl.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/php.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/proxy.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/python.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/ssl.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/status.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/status.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/worker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/worker.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/mod/wsgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/mod/wsgi.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/params.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/php.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/proxy.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/python.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/ssl.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/manifests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/manifests/vhost.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb: -------------------------------------------------------------------------------- 1 | Fake template for rspec. 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/spec/spec.opts -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/templates/listen.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/templates/listen.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/templates/mod/cgid.conf.erb: -------------------------------------------------------------------------------- 1 | ScriptSock <%= @cgisock_path %> 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/templates/mod/dav_fs.conf.erb: -------------------------------------------------------------------------------- 1 | DAVLockDB <%= @dav_lock %> 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/tests/apache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/tests/apache.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/tests/dev.pp: -------------------------------------------------------------------------------- 1 | include apache::dev 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/tests/init.pp: -------------------------------------------------------------------------------- 1 | include apache 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/tests/php.pp: -------------------------------------------------------------------------------- 1 | include apache::php 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/tests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/tests/vhost.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/tests/vhost_ip_based.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/tests/vhost_ip_based.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apache/tests/vhost_ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apache/tests/vhost_ssl.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: development 3 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/.fixtures.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/.forge-release/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/.forge-release/pom.xml -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/.forge-release/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/.forge-release/publish -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/.forge-release/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/.forge-release/validate -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/.travis.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/CHANGELOG -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/Gemfile -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/Gemfile.lock -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/LICENSE -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/README.md -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/backports.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/backports.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/builddep.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/builddep.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/conf.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/force.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/force.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/key.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/params.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/pin.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/ppa.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/release.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/release.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/source.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/manifests/update.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/manifests/update.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/spec/classes/apt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/spec/classes/apt_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/spec/defines/conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/spec/defines/conf_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/spec/defines/force_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/spec/defines/force_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/spec/defines/key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/spec/defines/key_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/spec/defines/pin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/spec/defines/pin_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/spec/defines/ppa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/spec/defines/ppa_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/templates/pin.pref.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/templates/pin.pref.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/templates/source.list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/templates/source.list.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/builddep.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/builddep.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/debian/testing.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/debian/testing.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/debian/unstable.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/debian/unstable.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/force.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/force.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/key.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/params.pp: -------------------------------------------------------------------------------- 1 | include apt::params 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/pin.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/ppa.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/release.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/release.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/apt/tests/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/apt/tests/source.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/bootstrap/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/bootstrap/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/CHANGELOG -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/LICENSE -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/README.markdown -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/Rakefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/files/null/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/manifests/fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/manifests/fragment.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/manifests/setup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/manifests/setup.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/concat/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/Gemfile -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/Gemfile.lock -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/LICENSE -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/README.md -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/Rakefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/manifests/init.pp: -------------------------------------------------------------------------------- 1 | class git { 2 | package { 'git': ensure => present, } 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/spec/classes/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/spec/classes/git_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/git/templates/gitconfig.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/git/templates/gitconfig.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: development 3 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/.fixtures.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/.forge-release/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/.forge-release/pom.xml -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/.forge-release/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/.forge-release/publish -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/.forge-release/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/.forge-release/validate -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/.nodeset.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/.travis.yml -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/CHANGELOG -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/Gemfile -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/Gemfile.lock -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/LICENSE -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/README.md -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/Rakefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/TODO -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/files/mysqltuner.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/files/mysqltuner.pl -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/backup.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/config.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/db.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/java.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/java.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/params.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/perl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/perl.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/php.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/python.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/ruby.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/ruby.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/manifests/server.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/spec/spec.opts -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/templates/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/templates/my.cnf.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/tests/backup.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/init.pp: -------------------------------------------------------------------------------- 1 | include mysql 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/java.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::java':} 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/mysql_database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/tests/mysql_database.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/mysql_grant.pp: -------------------------------------------------------------------------------- 1 | database_grant{'test1@localhost/redmine': 2 | privileges => [update], 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/mysql_user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/tests/mysql_user.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/perl.pp: -------------------------------------------------------------------------------- 1 | include mysql::perl 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/python.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::python':} 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/ruby.pp: -------------------------------------------------------------------------------- 1 | include mysql::ruby 2 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/tests/server.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/mysql/tests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/mysql/tests/server/config.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/nodejs/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/nodejs/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/README.rdoc -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/Rakefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/module.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/params.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/pear.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/pear.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/pear/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/pear/config.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/pear/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/pear/module.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/pecl/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/pecl/module.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/manifests/spec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/manifests/spec.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/spec/classes/php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/spec/classes/php_spec.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/php/templates/spec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/php/templates/spec.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/README.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/README.check -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/README.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/README.deploy -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/README.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/README.info -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/README.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/README.log -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/README.rdoc -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/Rakefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/info/readme/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/info/readme/readme -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/mailpuppicheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/mailpuppicheck -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/archive.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/delete.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/deploy.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/execute.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/functions -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/git.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/header -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/service.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/svn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/svn.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/wait.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/yant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/yant.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/files/scripts/yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/files/scripts/yum.sh -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/lib/facter/last_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/lib/facter/last_run.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/check.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/check.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/deploy.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/extras.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/extras.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/helper.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/helper.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/helpers.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/helpers.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/info.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/info.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/info/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/info/module.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/log.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/one.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/one.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/params.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/project.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/project.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/report.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/report.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/rollback.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/rollback.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/run.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/run.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/skel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/skel.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/todo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/todo.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/two.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/two.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/manifests/ze.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/manifests/ze.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/templates/info.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/templates/info.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/templates/log.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/templates/log.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/templates/puppi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/templates/puppi.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/puppi/templates/todo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/puppi/templates/todo.erb -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/CHANGELOG -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/CONTRIBUTING.md -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/Gemfile -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/LICENSE -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/Modulefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/README.markdown -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/Rakefile -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/manifests/init.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/manifests/stages.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/manifests/stages.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/metadata.json -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/spec/spec.opts -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/spec/spec_helper.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/spec/watchr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/spec/watchr.rb -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/tests/file_line.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/puppet/modules/stdlib/tests/file_line.pp -------------------------------------------------------------------------------- /app/templates/puppet/modules/stdlib/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /app/templates/wp-config.php.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/app/templates/wp-config.php.tmpl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/package.json -------------------------------------------------------------------------------- /plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/plugin/index.js -------------------------------------------------------------------------------- /puppet/manifests/default.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/manifests/default.pp -------------------------------------------------------------------------------- /puppet/modules/apache/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: development 3 | -------------------------------------------------------------------------------- /puppet/modules/apache/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/apache/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/.nodeset.yml -------------------------------------------------------------------------------- /puppet/modules/apache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/apache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/CHANGELOG.md -------------------------------------------------------------------------------- /puppet/modules/apache/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/CONTRIBUTING.md -------------------------------------------------------------------------------- /puppet/modules/apache/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/Gemfile -------------------------------------------------------------------------------- /puppet/modules/apache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/LICENSE -------------------------------------------------------------------------------- /puppet/modules/apache/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/Modulefile -------------------------------------------------------------------------------- /puppet/modules/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/README.md -------------------------------------------------------------------------------- /puppet/modules/apache/README.passenger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/README.passenger.md -------------------------------------------------------------------------------- /puppet/modules/apache/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/Rakefile -------------------------------------------------------------------------------- /puppet/modules/apache/files/httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/files/httpd -------------------------------------------------------------------------------- /puppet/modules/apache/lib/puppet/provider/a2mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/lib/puppet/provider/a2mod.rb -------------------------------------------------------------------------------- /puppet/modules/apache/lib/puppet/provider/a2mod/a2mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/lib/puppet/provider/a2mod/a2mod.rb -------------------------------------------------------------------------------- /puppet/modules/apache/lib/puppet/type/a2mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/lib/puppet/type/a2mod.rb -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/balancer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/balancer.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/balancermember.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/balancermember.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/confd/no_accf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/confd/no_accf.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/default_confd_files.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/default_confd_files.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/default_mods.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/default_mods.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/default_mods/load.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/default_mods/load.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/dev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/dev.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/listen.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/listen.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/alias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/alias.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/auth_basic.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/auth_basic.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/auth_kerb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/auth_kerb.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/authnz_ldap.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/authnz_ldap.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/autoindex.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/autoindex.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/cache.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/cgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/cgi.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/cgid.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/cgid.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/dav.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/dav.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/dav_fs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/dav_fs.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/dav_svn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/dav_svn.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/deflate.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/deflate.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/dev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/dev.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/dir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/dir.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/disk_cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/disk_cache.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/event.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/event.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/expires.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/expires.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/fastcgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/fastcgi.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/fcgid.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/fcgid.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/headers.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/headers.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/include.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/include.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/info.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/info.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/itk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/itk.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/ldap.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/ldap.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/mime.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/mime.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/mime_magic.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/mime_magic.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/negotiation.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/negotiation.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/nss.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/nss.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/passenger.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/passenger.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/perl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/perl.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/peruser.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/peruser.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/php.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/prefork.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/prefork.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/proxy.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/proxy_ajp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/proxy_ajp.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/proxy_balancer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/proxy_balancer.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/proxy_html.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/proxy_html.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/proxy_http.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/proxy_http.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/python.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/reqtimeout.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/reqtimeout.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/rewrite.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/rewrite.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/rpaf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/rpaf.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/setenvif.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/setenvif.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/ssl.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/status.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/status.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/suphp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/suphp.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/userdir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/userdir.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/vhost_alias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/vhost_alias.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/worker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/worker.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/wsgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/wsgi.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod/xsendfile.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mod/xsendfile.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mpm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/mpm.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/namevirtualhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/namevirtualhost.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/package.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/package.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/peruser/multiplexer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/peruser/multiplexer.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/peruser/processor.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/peruser/processor.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/php.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/proxy.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/python.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/service.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/ssl.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/version.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/version.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/manifests/vhost.pp -------------------------------------------------------------------------------- /puppet/modules/apache/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/metadata.json -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/apache_ssl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/apache_ssl_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/basic_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/class_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/class_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/itk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/itk_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/mod_php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/mod_php_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/mod_suphp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/mod_suphp_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/service_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/version.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/acceptance/vhost_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/acceptance/vhost_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/apache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/apache_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/dev_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/dev_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/auth_kerb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/auth_kerb_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/dav_svn_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/dav_svn_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/dev_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/dev_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/dir_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/dir_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/event_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/fastcgi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/fastcgi_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/fcgid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/fcgid_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/info_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/itk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/itk_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/passenger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/passenger_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/perl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/perl_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/peruser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/peruser_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/php_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/prefork_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/prefork_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/python_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/python_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/rpaf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/rpaf_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/ssl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/ssl_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/status_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/suphp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/suphp_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/worker_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/mod/wsgi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/mod/wsgi_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/params_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/params_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/classes/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/classes/service_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/defines/mod_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/defines/mod_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/defines/vhost_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/defines/vhost_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb: -------------------------------------------------------------------------------- 1 | Fake template for rspec. 2 | -------------------------------------------------------------------------------- /puppet/modules/apache/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/apache/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/apache/spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/spec/spec_helper_acceptance.rb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/confd/no-accf.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/confd/no-accf.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/httpd.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/httpd.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/listen.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/listen.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/alias.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/alias.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/authnz_ldap.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/authnz_ldap.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/autoindex.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/autoindex.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/cgid.conf.erb: -------------------------------------------------------------------------------- 1 | ScriptSock "<%= @cgisock_path %>" 2 | -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/dav_fs.conf.erb: -------------------------------------------------------------------------------- 1 | DAVLockDB "<%= @dav_lock %>" 2 | -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/deflate.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/deflate.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/dir.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/dir.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/disk_cache.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/disk_cache.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/event.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/event.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/fastcgi.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/fastcgi.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/info.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/info.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/itk.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/itk.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/ldap.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/ldap.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/mime.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/mime.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/mime_magic.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/mime_magic.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/mpm_event.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/mpm_event.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/negotiation.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/negotiation.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/nss.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/nss.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/passenger.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/passenger.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/peruser.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/peruser.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/php5.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/php5.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/prefork.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/prefork.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/proxy.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/proxy.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/proxy_html.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/proxy_html.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/reqtimeout.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/reqtimeout.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/rpaf.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/rpaf.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/setenvif.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/setenvif.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/ssl.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/ssl.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/status.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/status.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/suphp.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/suphp.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/userdir.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/userdir.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/worker.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/worker.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/mod/wsgi.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/mod/wsgi.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/namevirtualhost.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/namevirtualhost.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/ports_header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/ports_header.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost.conf.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_aliases.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_aliases.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_block.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_block.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_directories.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_directories.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_fastcgi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_fastcgi.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_header.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_itk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_itk.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_php_admin.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_php_admin.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_proxy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_proxy.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_rack.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_rack.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_redirect.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_redirect.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_requestheader.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_requestheader.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_rewrite.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_rewrite.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_scriptalias.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_scriptalias.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_serveralias.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_serveralias.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_setenv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_setenv.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_ssl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_ssl.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_suphp.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_suphp.erb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhost/_wsgi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/templates/vhost/_wsgi.erb -------------------------------------------------------------------------------- /puppet/modules/apache/tests/apache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/apache.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/dev.pp: -------------------------------------------------------------------------------- 1 | include apache::dev 2 | -------------------------------------------------------------------------------- /puppet/modules/apache/tests/init.pp: -------------------------------------------------------------------------------- 1 | include apache 2 | -------------------------------------------------------------------------------- /puppet/modules/apache/tests/mod_load_params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/mod_load_params.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/mods.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/mods.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/mods_custom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/mods_custom.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/php.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/vhost.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/vhost_directories.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/vhost_directories.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/vhost_ip_based.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/vhost_ip_based.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/vhost_ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/vhost_ssl.pp -------------------------------------------------------------------------------- /puppet/modules/apache/tests/vhosts_without_listen.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apache/tests/vhosts_without_listen.pp -------------------------------------------------------------------------------- /puppet/modules/apt/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: development 3 | -------------------------------------------------------------------------------- /puppet/modules/apt/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/apt/.forge-release/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/.forge-release/pom.xml -------------------------------------------------------------------------------- /puppet/modules/apt/.forge-release/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/.forge-release/publish -------------------------------------------------------------------------------- /puppet/modules/apt/.forge-release/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/.forge-release/settings.xml -------------------------------------------------------------------------------- /puppet/modules/apt/.forge-release/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/.forge-release/validate -------------------------------------------------------------------------------- /puppet/modules/apt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/apt/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/CHANGELOG -------------------------------------------------------------------------------- /puppet/modules/apt/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/Gemfile -------------------------------------------------------------------------------- /puppet/modules/apt/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/Gemfile.lock -------------------------------------------------------------------------------- /puppet/modules/apt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/LICENSE -------------------------------------------------------------------------------- /puppet/modules/apt/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/Modulefile -------------------------------------------------------------------------------- /puppet/modules/apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/README.md -------------------------------------------------------------------------------- /puppet/modules/apt/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/backports.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/backports.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/builddep.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/builddep.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/conf.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/debian/testing.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/debian/testing.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/debian/unstable.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/debian/unstable.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/force.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/force.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/key.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/pin.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/ppa.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/release.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/release.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/source.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/update.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/manifests/update.pp -------------------------------------------------------------------------------- /puppet/modules/apt/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/metadata.json -------------------------------------------------------------------------------- /puppet/modules/apt/spec/classes/apt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/classes/apt_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/classes/backports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/classes/backports_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/classes/debian_testing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/classes/debian_testing_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/classes/debian_unstable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/classes/debian_unstable_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/classes/params_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/classes/params_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/classes/release_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/classes/release_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/defines/builddep_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/defines/builddep_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/defines/conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/defines/conf_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/defines/force_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/defines/force_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/defines/key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/defines/key_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/defines/pin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/defines/pin_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/defines/ppa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/defines/ppa_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/defines/source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/defines/source_spec.rb -------------------------------------------------------------------------------- /puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/pin.pref.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/templates/pin.pref.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/source.list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/templates/source.list.erb -------------------------------------------------------------------------------- /puppet/modules/apt/tests/builddep.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/builddep.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/debian/testing.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/debian/testing.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/debian/unstable.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/debian/unstable.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/force.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/force.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | -------------------------------------------------------------------------------- /puppet/modules/apt/tests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/key.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/params.pp: -------------------------------------------------------------------------------- 1 | include apt::params 2 | -------------------------------------------------------------------------------- /puppet/modules/apt/tests/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/pin.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/ppa.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/release.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/release.pp -------------------------------------------------------------------------------- /puppet/modules/apt/tests/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/apt/tests/source.pp -------------------------------------------------------------------------------- /puppet/modules/bootstrap/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/bootstrap/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/concat/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/CHANGELOG -------------------------------------------------------------------------------- /puppet/modules/concat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/LICENSE -------------------------------------------------------------------------------- /puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/Modulefile -------------------------------------------------------------------------------- /puppet/modules/concat/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/README.markdown -------------------------------------------------------------------------------- /puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/Rakefile -------------------------------------------------------------------------------- /puppet/modules/concat/files/concatfragments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/files/concatfragments.sh -------------------------------------------------------------------------------- /puppet/modules/concat/files/null/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/concat/lib/facter/concat_basedir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/lib/facter/concat_basedir.rb -------------------------------------------------------------------------------- /puppet/modules/concat/manifests/fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/manifests/fragment.pp -------------------------------------------------------------------------------- /puppet/modules/concat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/concat/manifests/setup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/manifests/setup.pp -------------------------------------------------------------------------------- /puppet/modules/concat/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/metadata.json -------------------------------------------------------------------------------- /puppet/modules/concat/spec/defines/init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/spec/defines/init_spec.rb -------------------------------------------------------------------------------- /puppet/modules/concat/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/concat/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/git/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/Gemfile -------------------------------------------------------------------------------- /puppet/modules/git/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/Gemfile.lock -------------------------------------------------------------------------------- /puppet/modules/git/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/LICENSE -------------------------------------------------------------------------------- /puppet/modules/git/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/Modulefile -------------------------------------------------------------------------------- /puppet/modules/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/README.md -------------------------------------------------------------------------------- /puppet/modules/git/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/Rakefile -------------------------------------------------------------------------------- /puppet/modules/git/manifests/init.pp: -------------------------------------------------------------------------------- 1 | class git { 2 | package { 'git': ensure => present, } 3 | } 4 | -------------------------------------------------------------------------------- /puppet/modules/git/manifests/resource/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/manifests/resource/config.pp -------------------------------------------------------------------------------- /puppet/modules/git/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/metadata.json -------------------------------------------------------------------------------- /puppet/modules/git/spec/classes/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/spec/classes/git_spec.rb -------------------------------------------------------------------------------- /puppet/modules/git/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/git/templates/gitconfig.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/git/templates/gitconfig.erb -------------------------------------------------------------------------------- /puppet/modules/mysql/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: development 3 | -------------------------------------------------------------------------------- /puppet/modules/mysql/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/mysql/.forge-release/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/.forge-release/pom.xml -------------------------------------------------------------------------------- /puppet/modules/mysql/.forge-release/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/.forge-release/publish -------------------------------------------------------------------------------- /puppet/modules/mysql/.forge-release/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/.forge-release/settings.xml -------------------------------------------------------------------------------- /puppet/modules/mysql/.forge-release/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/.forge-release/validate -------------------------------------------------------------------------------- /puppet/modules/mysql/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/.nodeset.yml -------------------------------------------------------------------------------- /puppet/modules/mysql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/mysql/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/CHANGELOG -------------------------------------------------------------------------------- /puppet/modules/mysql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/Gemfile -------------------------------------------------------------------------------- /puppet/modules/mysql/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/Gemfile.lock -------------------------------------------------------------------------------- /puppet/modules/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/LICENSE -------------------------------------------------------------------------------- /puppet/modules/mysql/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/Modulefile -------------------------------------------------------------------------------- /puppet/modules/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/README.md -------------------------------------------------------------------------------- /puppet/modules/mysql/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/Rakefile -------------------------------------------------------------------------------- /puppet/modules/mysql/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/TODO -------------------------------------------------------------------------------- /puppet/modules/mysql/files/mysqltuner.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/files/mysqltuner.pl -------------------------------------------------------------------------------- /puppet/modules/mysql/lib/puppet/type/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/lib/puppet/type/database.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/lib/puppet/type/database_grant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/lib/puppet/type/database_grant.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/lib/puppet/type/database_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/lib/puppet/type/database_user.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/backup.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/config.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/db.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/java.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/java.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/perl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/perl.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/php.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/python.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/ruby.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/ruby.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/server.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/server/config.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/server/monitor.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/server/monitor.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/server/mysqltuner.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/manifests/server/mysqltuner.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/metadata.json -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_backup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_backup_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_config_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_init_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_java_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_java_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_perl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_perl_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_php_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_python_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_python_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_ruby_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_ruby_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/classes/mysql_server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/classes/mysql_server_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/defines/mysql_db_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/defines/mysql_db_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/spec_helper_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/spec_helper_system.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/system/mysql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/system/mysql_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/spec/unit/mysql_password_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/spec/unit/mysql_password_spec.rb -------------------------------------------------------------------------------- /puppet/modules/mysql/templates/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/templates/my.cnf.erb -------------------------------------------------------------------------------- /puppet/modules/mysql/templates/my.cnf.pass.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/templates/my.cnf.pass.erb -------------------------------------------------------------------------------- /puppet/modules/mysql/templates/my.conf.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/templates/my.conf.cnf.erb -------------------------------------------------------------------------------- /puppet/modules/mysql/templates/mysqlbackup.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/templates/mysqlbackup.sh.erb -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/tests/backup.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/init.pp: -------------------------------------------------------------------------------- 1 | include mysql 2 | -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/java.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::java':} 2 | -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/mysql_database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/tests/mysql_database.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/mysql_grant.pp: -------------------------------------------------------------------------------- 1 | database_grant{'test1@localhost/redmine': 2 | privileges => [update], 3 | } 4 | -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/mysql_user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/tests/mysql_user.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/perl.pp: -------------------------------------------------------------------------------- 1 | include mysql::perl 2 | -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/python.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::python':} 2 | -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/ruby.pp: -------------------------------------------------------------------------------- 1 | include mysql::ruby 2 | -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/tests/server.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/server/account_security.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/tests/server/account_security.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/tests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/mysql/tests/server/config.pp -------------------------------------------------------------------------------- /puppet/modules/nodejs/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/nodejs/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/php/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/Modulefile -------------------------------------------------------------------------------- /puppet/modules/php/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/README.rdoc -------------------------------------------------------------------------------- /puppet/modules/php/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/Rakefile -------------------------------------------------------------------------------- /puppet/modules/php/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/php/manifests/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/module.pp -------------------------------------------------------------------------------- /puppet/modules/php/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/php/manifests/pear.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/pear.pp -------------------------------------------------------------------------------- /puppet/modules/php/manifests/pear/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/pear/config.pp -------------------------------------------------------------------------------- /puppet/modules/php/manifests/pear/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/pear/module.pp -------------------------------------------------------------------------------- /puppet/modules/php/manifests/pecl/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/pecl/module.pp -------------------------------------------------------------------------------- /puppet/modules/php/manifests/spec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/manifests/spec.pp -------------------------------------------------------------------------------- /puppet/modules/php/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/metadata.json -------------------------------------------------------------------------------- /puppet/modules/php/spec/classes/php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/spec/classes/php_spec.rb -------------------------------------------------------------------------------- /puppet/modules/php/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/php/templates/spec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/php/templates/spec.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/Modulefile -------------------------------------------------------------------------------- /puppet/modules/puppi/README.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/README.check -------------------------------------------------------------------------------- /puppet/modules/puppi/README.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/README.deploy -------------------------------------------------------------------------------- /puppet/modules/puppi/README.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/README.info -------------------------------------------------------------------------------- /puppet/modules/puppi/README.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/README.log -------------------------------------------------------------------------------- /puppet/modules/puppi/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/README.rdoc -------------------------------------------------------------------------------- /puppet/modules/puppi/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/Rakefile -------------------------------------------------------------------------------- /puppet/modules/puppi/files/info/readme/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/info/readme/readme -------------------------------------------------------------------------------- /puppet/modules/puppi/files/info/readme/readme-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/info/readme/readme-default -------------------------------------------------------------------------------- /puppet/modules/puppi/files/mailpuppicheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/mailpuppicheck -------------------------------------------------------------------------------- /puppet/modules/puppi/files/mcollective/mc-puppi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/mcollective/mc-puppi -------------------------------------------------------------------------------- /puppet/modules/puppi/files/mcollective/puppi.ddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/mcollective/puppi.ddl -------------------------------------------------------------------------------- /puppet/modules/puppi/files/mcollective/puppi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/mcollective/puppi.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/files/mcollective/puppicheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/mcollective/puppicheck -------------------------------------------------------------------------------- /puppet/modules/puppi/files/mcollective/puppideploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/mcollective/puppideploy -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/archive.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/check_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/check_project.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/checkwardir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/checkwardir.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/clean_filelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/clean_filelist.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/database.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/delete.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/deploy.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/deploy_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/deploy_files.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/execute.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/firewall.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/functions -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/get_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/get_file.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/get_filesfromlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/get_filesfromlist.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/get_maven_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/get_maven_files.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/get_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/get_metadata.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/git.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/header -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/predeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/predeploy.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/predeploy_tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/predeploy_tar.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/report_mail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/report_mail.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/service.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/svn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/svn.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/wait.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/yant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/yant.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/files/scripts/yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/files/scripts/yum.sh -------------------------------------------------------------------------------- /puppet/modules/puppi/lib/facter/last_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/lib/facter/last_run.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/lib/facter/puppi_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/lib/facter/puppi_projects.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/check.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/check.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/dependencies.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/dependencies.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/deploy.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/extras.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/extras.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/helper.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/helper.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/helpers.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/helpers.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/info.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/info.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/info/instance.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/info/instance.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/info/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/info/module.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/info/readme.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/info/readme.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/initialize.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/initialize.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/log.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/mcollective/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/mcollective/client.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/mcollective/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/mcollective/server.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/netinstall.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/netinstall.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/one.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/one.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/README -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/archive.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/archive.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/builder.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/builder.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/dir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/dir.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/files.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/files.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/git.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/git.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/maven.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/maven.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/mysql.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/service.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/svn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/svn.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/tar.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/tar.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/war.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/war.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/y4maven.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/y4maven.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/project/yum.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/project/yum.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/report.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/report.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/rollback.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/rollback.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/run.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/run.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/skel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/skel.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/todo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/todo.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/two.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/two.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/manifests/ze.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/manifests/ze.pp -------------------------------------------------------------------------------- /puppet/modules/puppi/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/metadata.json -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/classes/puppi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/classes/puppi_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_check_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_deploy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_deploy_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_helper_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_info_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_log_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_project_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_report_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_rollback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_rollback_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_run_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_todo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_todo_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/defines/puppi_ze_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/defines/puppi_ze_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/functions/any2bool_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/functions/any2bool_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/functions/bool2ensure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/functions/bool2ensure_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/functions/url_parse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/functions/url_parse_spec.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/helpers/standard.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/helpers/standard.yml.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/info.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/info.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/info/instance.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/info/instance.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/info/module.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/info/module.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/info/puppet.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/info/puppet.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/info/readme.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/info/readme.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/log.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/log.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/project/config.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/project/config.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/puppi.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/puppi.conf.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/puppi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/puppi.erb -------------------------------------------------------------------------------- /puppet/modules/puppi/templates/todo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/puppi/templates/todo.erb -------------------------------------------------------------------------------- /puppet/modules/stdlib/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/CHANGELOG -------------------------------------------------------------------------------- /puppet/modules/stdlib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/CONTRIBUTING.md -------------------------------------------------------------------------------- /puppet/modules/stdlib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/Gemfile -------------------------------------------------------------------------------- /puppet/modules/stdlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/LICENSE -------------------------------------------------------------------------------- /puppet/modules/stdlib/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/Modulefile -------------------------------------------------------------------------------- /puppet/modules/stdlib/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/README.markdown -------------------------------------------------------------------------------- /puppet/modules/stdlib/README_DEVELOPER.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/README_DEVELOPER.markdown -------------------------------------------------------------------------------- /puppet/modules/stdlib/README_SPECS.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/README_SPECS.markdown -------------------------------------------------------------------------------- /puppet/modules/stdlib/RELEASE_PROCESS.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/RELEASE_PROCESS.markdown -------------------------------------------------------------------------------- /puppet/modules/stdlib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/Rakefile -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/facter/facter_dot_d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/facter/facter_dot_d.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/facter/pe_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/facter/pe_version.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/facter/puppet_vardir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/facter/puppet_vardir.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/facter/root_home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/facter/root_home.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/facter/util/puppet_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/facter/util/puppet_settings.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/puppet/parser/functions/abs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/puppet/parser/functions/abs.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/puppet/parser/functions/max.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/puppet/parser/functions/max.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/puppet/parser/functions/min.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/puppet/parser/functions/min.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/puppet/parser/functions/zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/puppet/parser/functions/zip.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/puppet/type/anchor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/puppet/type/anchor.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/puppet/type/file_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/lib/puppet/type/file_line.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/manifests/stages.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/manifests/stages.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/metadata.json -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/classes/anchor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/spec/classes/anchor_spec.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/functions/getparam_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/spec/functions/getparam_spec.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/unit/facter/root_home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/spec/unit/facter/root_home_spec.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/watchr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/spec/watchr.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/tests/file_line.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/tests/file_line.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/tests/has_interface_with.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/tests/has_interface_with.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/tests/has_ip_address.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/tests/has_ip_address.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/tests/has_ip_network.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/puppet/modules/stdlib/tests/has_ip_network.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /test/fixtures/.yeopress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/test/fixtures/.yeopress -------------------------------------------------------------------------------- /test/fixtures/dir/.yeopress: -------------------------------------------------------------------------------- 1 | { 2 | "url": "yeopress.com" 3 | } 4 | -------------------------------------------------------------------------------- /test/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/art.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/test/unit/art.js -------------------------------------------------------------------------------- /test/unit/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/test/unit/config.js -------------------------------------------------------------------------------- /test/unit/log.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/wordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/test/wordpress.js -------------------------------------------------------------------------------- /theme/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/theme/USAGE -------------------------------------------------------------------------------- /theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/theme/index.js -------------------------------------------------------------------------------- /util/art.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/util/art.js -------------------------------------------------------------------------------- /util/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/util/config.js -------------------------------------------------------------------------------- /util/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/util/log.js -------------------------------------------------------------------------------- /util/wordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleytodd/YeoPress/HEAD/util/wordpress.js --------------------------------------------------------------------------------