├── LICENSE ├── README.md ├── demo ├── Vagrantfile ├── html │ ├── css │ │ ├── default.css │ │ └── helloharvard.css │ ├── images │ │ └── harvard_shield.png │ ├── ims-blti │ │ ├── LICENSE.txt │ │ ├── OAuth.php │ │ ├── OAuthBody.php │ │ ├── TrivialOAuthDataStore.php │ │ ├── blti.php │ │ └── blti_util.php │ ├── index.html │ ├── info.php │ ├── lms.php │ ├── misc.php │ └── tool-helloworld.php └── puphpet │ ├── .gitattributes │ ├── config.yaml │ ├── files │ ├── dot │ │ ├── .bash_aliases │ │ ├── .bash_git │ │ ├── .vimrc │ │ └── ssh │ │ │ ├── id_rsa │ │ │ ├── id_rsa.ppk │ │ │ ├── id_rsa.pub │ │ │ ├── insecure_private_key │ │ │ ├── root_id_rsa │ │ │ ├── root_id_rsa.ppk │ │ │ └── root_id_rsa.pub │ ├── exec-always │ │ └── empty │ ├── exec-once │ │ └── empty │ ├── startup-always │ │ └── empty │ └── startup-once │ │ └── empty │ ├── puppet │ ├── Puppetfile │ ├── hiera.yaml │ ├── manifest.pp │ └── modules │ │ ├── apache │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .puppet-lint.rc │ │ ├── .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 │ │ │ │ ├── actions.pp │ │ │ │ ├── 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 │ │ │ │ ├── pagespeed.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 │ │ │ │ ├── speling.pp │ │ │ │ ├── ssl.pp │ │ │ │ ├── status.pp │ │ │ │ ├── suexec.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_dav_svn_spec.rb │ │ │ │ ├── mod_deflate_spec.rb │ │ │ │ ├── mod_fcgid_spec.rb │ │ │ │ ├── mod_mime_spec.rb │ │ │ │ ├── mod_pagespeed_spec.rb │ │ │ │ ├── mod_passenger_spec.rb │ │ │ │ ├── mod_php_spec.rb │ │ │ │ ├── mod_proxy_html_spec.rb │ │ │ │ ├── mod_suphp_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ │ ├── debian-73-i386.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ │ │ ├── ubuntu-server-1310-x64.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ │ ├── prefork_worker_spec.rb │ │ │ │ ├── service_spec.rb │ │ │ │ ├── unsupported_spec.rb │ │ │ │ ├── version.rb │ │ │ │ └── vhost_spec.rb │ │ │ ├── classes │ │ │ │ ├── apache_spec.rb │ │ │ │ ├── dev_spec.rb │ │ │ │ ├── mod │ │ │ │ │ ├── auth_kerb_spec.rb │ │ │ │ │ ├── authnz_ldap_spec.rb │ │ │ │ │ ├── dav_svn_spec.rb │ │ │ │ │ ├── deflate_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 │ │ │ │ │ ├── mime_spec.rb │ │ │ │ │ ├── pagespeed_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 │ │ │ │ │ ├── speling_spec.rb │ │ │ │ │ ├── ssl_spec.rb │ │ │ │ │ ├── status_spec.rb │ │ │ │ │ ├── suphp_spec.rb │ │ │ │ │ ├── worker_spec.rb │ │ │ │ │ └── wsgi_spec.rb │ │ │ │ ├── params_spec.rb │ │ │ │ └── service_spec.rb │ │ │ ├── defines │ │ │ │ ├── mod_spec.rb │ │ │ │ └── vhost_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── files │ │ │ │ │ └── spec │ │ │ │ └── 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 │ │ │ │ ├── fcgid.conf.erb │ │ │ │ ├── info.conf.erb │ │ │ │ ├── itk.conf.erb │ │ │ │ ├── ldap.conf.erb │ │ │ │ ├── load.erb │ │ │ │ ├── mime.conf.erb │ │ │ │ ├── mime_magic.conf.erb │ │ │ │ ├── mpm_event.conf.erb │ │ │ │ ├── negotiation.conf.erb │ │ │ │ ├── nss.conf.erb │ │ │ │ ├── pagespeed.conf.erb │ │ │ │ ├── passenger.conf.erb │ │ │ │ ├── peruser.conf.erb │ │ │ │ ├── php5.conf.erb │ │ │ │ ├── prefork.conf.erb │ │ │ │ ├── proxy.conf.erb │ │ │ │ ├── proxy_html.conf.erb │ │ │ │ ├── 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 │ │ │ │ ├── _action.erb │ │ │ │ ├── _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 │ │ │ │ ├── _suexec.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 │ │ ├── .fixtures.yml │ │ ├── .project │ │ ├── .puppet-lint.rc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── 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 │ │ │ ├── unattended_upgrades.pp │ │ │ └── update.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── apt_builddep_spec.rb │ │ │ │ ├── apt_key_spec.rb │ │ │ │ ├── apt_ppa_spec.rb │ │ │ │ ├── apt_source_spec.rb │ │ │ │ ├── apt_spec.rb │ │ │ │ ├── backports_spec.rb │ │ │ │ ├── class_spec.rb │ │ │ │ ├── conf_spec.rb │ │ │ │ ├── force_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ │ ├── pin_spec.rb │ │ │ │ ├── release_spec.rb │ │ │ │ ├── unattended_upgrade_spec.rb │ │ │ │ └── unsupported_spec.rb │ │ │ ├── classes │ │ │ │ ├── apt_spec.rb │ │ │ │ ├── backports_spec.rb │ │ │ │ ├── debian_testing_spec.rb │ │ │ │ ├── debian_unstable_spec.rb │ │ │ │ ├── params_spec.rb │ │ │ │ ├── release_spec.rb │ │ │ │ └── unattended_upgrades_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 │ │ │ └── spec_helper_acceptance.rb │ │ ├── templates │ │ │ ├── 10periodic.erb │ │ │ ├── 50unattended-upgrades.erb │ │ │ ├── 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 │ │ │ └── unattended_upgrades.pp │ │ ├── beanstalkd │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ └── init.pp │ │ ├── run-tests.sh │ │ ├── spec │ │ │ ├── defines │ │ │ │ └── config_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── manifests │ │ │ │ │ └── site.pp │ │ │ │ └── modules │ │ │ │ │ └── beanstalkd │ │ │ │ │ ├── manifests │ │ │ │ │ └── init.pp │ │ │ │ │ └── templates │ │ │ │ │ ├── debian │ │ │ │ │ └── beanstalkd_default.erb │ │ │ │ │ └── redhat │ │ │ │ │ └── beanstalkd_sysconfig.erb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ ├── debian │ │ │ └── beanstalkd_default.erb │ │ │ └── redhat │ │ │ └── beanstalkd_sysconfig.erb │ │ ├── composer │ │ ├── .fixtures.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ └── facter │ │ │ │ └── composer_home.rb │ │ ├── manifests │ │ │ ├── exec.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ └── project.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── composer_params_spec.rb │ │ │ │ └── composer_spec.rb │ │ │ ├── defines │ │ │ │ ├── composer_exec_spec.rb │ │ │ │ └── composer_project_spec.rb │ │ │ ├── fixtures │ │ │ │ └── manifests │ │ │ │ │ └── site.pp │ │ │ ├── spec.opts │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ └── exec.erb │ │ └── tests │ │ │ ├── init.pp │ │ │ └── project.pp │ │ ├── concat │ │ ├── .fixtures.yml │ │ ├── .gitattributes │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ ├── concatfragments.rb │ │ │ └── concatfragments.sh │ │ ├── lib │ │ │ └── facter │ │ │ │ └── concat_basedir.rb │ │ ├── manifests │ │ │ ├── fragment.pp │ │ │ ├── init.pp │ │ │ └── setup.pp │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── backup_spec.rb │ │ │ │ ├── concat_spec.rb │ │ │ │ ├── deprecation_warnings_spec.rb │ │ │ │ ├── empty_spec.rb │ │ │ │ ├── fragment_source_spec.rb │ │ │ │ ├── newline_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── aix-71-vcloud.yml │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11-x64.yml │ │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ │ ├── order_spec.rb │ │ │ │ ├── quoted_paths_spec.rb │ │ │ │ ├── replace_spec.rb │ │ │ │ ├── symbolic_name_spec.rb │ │ │ │ └── warn_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ ├── classes │ │ │ │ └── concat_setup_spec.rb │ │ │ │ ├── defines │ │ │ │ ├── concat_fragment_spec.rb │ │ │ │ └── concat_spec.rb │ │ │ │ └── facts │ │ │ │ └── concat_basedir_spec.rb │ │ └── tests │ │ │ ├── fragment.pp │ │ │ └── init.pp │ │ ├── drush │ │ ├── Puppetfile │ │ ├── README │ │ ├── manifests │ │ │ ├── apt.pp │ │ │ ├── dis.pp │ │ │ ├── dl.pp │ │ │ ├── en.pp │ │ │ ├── git.pp │ │ │ ├── git │ │ │ │ └── drush.pp │ │ │ ├── init.pp │ │ │ ├── make.pp │ │ │ ├── params.pp │ │ │ ├── run.pp │ │ │ └── status.pp │ │ └── tests │ │ │ ├── .ci │ │ │ ├── .module │ │ │ ├── Vagrantfile │ │ │ ├── test.sh │ │ │ └── vagrant_test.sh │ │ │ ├── apt.pp │ │ │ ├── defaults.pp │ │ │ ├── dis.pp │ │ │ ├── dl.pp │ │ │ ├── en.pp │ │ │ ├── git.pp │ │ │ ├── git │ │ │ └── drush.pp │ │ │ ├── init.pp │ │ │ ├── make.pp │ │ │ ├── run.pp │ │ │ └── status.pp │ │ ├── elasticsearch │ │ ├── .fixtures.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── java.pp │ │ │ ├── package.pp │ │ │ ├── params.pp │ │ │ ├── plugin.pp │ │ │ ├── python.pp │ │ │ ├── ruby.pp │ │ │ ├── service.pp │ │ │ ├── service │ │ │ │ └── init.pp │ │ │ └── template.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── 001_elasticsearch_init_debian_spec.rb │ │ │ │ ├── 002_elasticsearch_init_redhat_spec.rb │ │ │ │ ├── 003_elasticsearch_init_unknown_spec.rb │ │ │ │ ├── 004_elasticsearch_init_config_spec.rb │ │ │ │ └── 005_elasticsearch_java_spec.rb │ │ │ ├── defines │ │ │ │ ├── 001_elasticsearch_python_spec.rb │ │ │ │ ├── 002_elasticsearch_ruby_spec.rb │ │ │ │ ├── 003_elasticsearch_template_spec.rb │ │ │ │ └── 004_elasticsearch_plugin_spec.rb │ │ │ ├── lib │ │ │ │ ├── parser_validate_task.rb │ │ │ │ └── template_check_task.rb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ └── etc │ │ │ ├── elasticsearch │ │ │ └── elasticsearch.yml.erb │ │ │ ├── init.d │ │ │ ├── elasticsearch.Debian.erb │ │ │ └── elasticsearch.RedHat.erb │ │ │ └── sysconfig │ │ │ └── defaults.erb │ │ ├── firewall │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── ip6tables_version.rb │ │ │ │ ├── iptables_persistent_version.rb │ │ │ │ └── iptables_version.rb │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── firewall.rb │ │ │ │ ├── firewall │ │ │ │ │ ├── ip6tables.rb │ │ │ │ │ └── iptables.rb │ │ │ │ └── firewallchain │ │ │ │ │ └── iptables_chain.rb │ │ │ │ ├── type │ │ │ │ ├── firewall.rb │ │ │ │ └── firewallchain.rb │ │ │ │ └── util │ │ │ │ ├── firewall.rb │ │ │ │ └── ipcidr.rb │ │ ├── manifests │ │ │ ├── init.pp │ │ │ ├── linux.pp │ │ │ └── linux │ │ │ │ ├── archlinux.pp │ │ │ │ ├── debian.pp │ │ │ │ └── redhat.pp │ │ ├── metadata.json │ │ └── spec │ │ │ ├── acceptance │ │ │ ├── change_source_spec.rb │ │ │ ├── class_spec.rb │ │ │ ├── connlimit_spec.rb │ │ │ ├── connmark_spec.rb │ │ │ ├── firewall_spec.rb │ │ │ ├── firewallchain_spec.rb │ │ │ ├── ip6_fragment_spec.rb │ │ │ ├── isfragment_spec.rb │ │ │ ├── nodesets │ │ │ │ ├── centos-59-x64-pe.yml │ │ │ │ ├── centos-59-x64.yml │ │ │ │ ├── centos-64-x64-fusion.yml │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ ├── centos-64-x64.yml │ │ │ │ ├── debian-607-x64.yml │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ ├── default.yml │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ ├── params_spec.rb │ │ │ ├── purge_spec.rb │ │ │ ├── resource_cmd_spec.rb │ │ │ ├── rules_spec.rb │ │ │ ├── socket_spec.rb │ │ │ └── standard_usage_spec.rb │ │ │ ├── fixtures │ │ │ ├── ip6tables │ │ │ │ └── conversion_hash.rb │ │ │ └── iptables │ │ │ │ └── conversion_hash.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ ├── classes │ │ │ ├── firewall_linux_archlinux_spec.rb │ │ │ ├── firewall_linux_debian_spec.rb │ │ │ ├── firewall_linux_redhat_spec.rb │ │ │ ├── firewall_linux_spec.rb │ │ │ └── firewall_spec.rb │ │ │ ├── facter │ │ │ ├── iptables_persistent_version_spec.rb │ │ │ └── iptables_spec.rb │ │ │ └── puppet │ │ │ ├── provider │ │ │ ├── iptables_chain_spec.rb │ │ │ └── iptables_spec.rb │ │ │ ├── type │ │ │ ├── firewall_spec.rb │ │ │ └── firewallchain_spec.rb │ │ │ └── util │ │ │ ├── firewall_spec.rb │ │ │ └── ipcidr_spec.rb │ │ ├── git │ │ ├── .fixtures.yml │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ └── subtree │ │ │ │ └── bash_completion.sh │ │ ├── lib │ │ │ └── facter │ │ │ │ ├── git_exec_path.rb │ │ │ │ └── git_version.rb │ │ ├── manifests │ │ │ ├── gitosis.pp │ │ │ ├── init.pp │ │ │ └── subtree.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── git_subtree_spec.rb │ │ │ └── spec_helper.rb │ │ └── tests │ │ │ ├── gitosis.pp │ │ │ └── init.pp │ │ ├── mailcatcher │ │ ├── .fixtures.yml │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── package.pp │ │ │ └── params.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── mailcatcher_spec.rb │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ └── etc │ │ │ │ └── init │ │ │ │ └── mailcatcher.conf.erb │ │ └── tests │ │ │ └── init.pp │ │ ├── mongodb │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ └── mongodb_password.rb │ │ │ │ ├── provider │ │ │ │ ├── mongodb_database │ │ │ │ │ └── mongodb.rb │ │ │ │ ├── mongodb_replset │ │ │ │ │ └── mongo.rb │ │ │ │ └── mongodb_user │ │ │ │ │ └── mongodb.rb │ │ │ │ └── type │ │ │ │ ├── mongodb_database.rb │ │ │ │ ├── mongodb_replset.rb │ │ │ │ └── mongodb_user.rb │ │ ├── manifests │ │ │ ├── client.pp │ │ │ ├── client │ │ │ │ └── install.pp │ │ │ ├── db.pp │ │ │ ├── globals.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ ├── replset.pp │ │ │ ├── repo.pp │ │ │ ├── repo │ │ │ │ ├── apt.pp │ │ │ │ └── yum.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── service.pp │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-6-vcloud.yml │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── multi-centos-6-vcloud.yml │ │ │ │ │ ├── multi-centos-64-x64.yml │ │ │ │ │ ├── sles-11-x64.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ │ ├── replset_spec.rb │ │ │ │ └── server_spec.rb │ │ │ ├── classes │ │ │ │ ├── client_install_spec.rb │ │ │ │ ├── repo_spec.rb │ │ │ │ ├── server_config_spec.rb │ │ │ │ ├── server_install_spec.rb │ │ │ │ └── server_spec.rb │ │ │ ├── defines │ │ │ │ └── db_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ ├── spec_helper_system.rb │ │ │ └── unit │ │ │ │ ├── mongodb_password_spec.rb │ │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── mongodb_database │ │ │ │ │ └── mongodb_spec.rb │ │ │ │ ├── mongodb_replset │ │ │ │ │ └── mongodb_spec.rb │ │ │ │ └── mongodb_user │ │ │ │ │ └── mongodb_spec.rb │ │ │ │ └── type │ │ │ │ ├── mongodb_database_spec.rb │ │ │ │ ├── mongodb_replset_spec.rb │ │ │ │ └── mongodb_user_spec.rb │ │ ├── templates │ │ │ └── mongodb.conf.erb │ │ └── tests │ │ │ ├── globals.pp │ │ │ ├── init.pp │ │ │ ├── replicaset.pp │ │ │ └── server.pp │ │ ├── mysql │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── TODO │ │ ├── files │ │ │ └── mysqltuner.pl │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── mysql_deepmerge.rb │ │ │ │ │ ├── mysql_password.rb │ │ │ │ │ └── mysql_strip_hash.rb │ │ │ │ ├── provider │ │ │ │ ├── database │ │ │ │ │ └── mysql.rb │ │ │ │ ├── database_grant │ │ │ │ │ └── mysql.rb │ │ │ │ ├── database_user │ │ │ │ │ └── mysql.rb │ │ │ │ ├── mysql.rb │ │ │ │ ├── mysql_database │ │ │ │ │ └── mysql.rb │ │ │ │ ├── mysql_grant │ │ │ │ │ └── mysql.rb │ │ │ │ └── mysql_user │ │ │ │ │ └── mysql.rb │ │ │ │ └── type │ │ │ │ ├── database.rb │ │ │ │ ├── database_grant.rb │ │ │ │ ├── database_user.rb │ │ │ │ ├── mysql_database.rb │ │ │ │ ├── mysql_grant.rb │ │ │ │ └── mysql_user.rb │ │ ├── manifests │ │ │ ├── backup.pp │ │ │ ├── bindings.pp │ │ │ ├── bindings │ │ │ │ ├── java.pp │ │ │ │ ├── perl.pp │ │ │ │ ├── php.pp │ │ │ │ ├── python.pp │ │ │ │ └── ruby.pp │ │ │ ├── client.pp │ │ │ ├── client │ │ │ │ └── install.pp │ │ │ ├── db.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ │ ├── account_security.pp │ │ │ │ ├── backup.pp │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ ├── monitor.pp │ │ │ │ ├── mysqltuner.pp │ │ │ │ ├── providers.pp │ │ │ │ ├── root_password.pp │ │ │ │ └── service.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── mysql_account_delete_spec.rb │ │ │ │ ├── mysql_backup_spec.rb │ │ │ │ ├── mysql_bindings_spec.rb │ │ │ │ ├── mysql_db_spec.rb │ │ │ │ ├── mysql_server_config_spec.rb │ │ │ │ ├── mysql_server_monitor_spec.rb │ │ │ │ ├── mysql_server_root_password_spec.rb │ │ │ │ ├── mysql_server_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11-x64.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ │ ├── types │ │ │ │ │ ├── mysql_database_spec.rb │ │ │ │ │ ├── mysql_grant_spec.rb │ │ │ │ │ └── mysql_user_spec.rb │ │ │ │ └── unsupported_spec.rb │ │ │ ├── classes │ │ │ │ ├── mysql_bindings_spec.rb │ │ │ │ ├── mysql_client_spec.rb │ │ │ │ ├── mysql_server_account_security_spec.rb │ │ │ │ ├── mysql_server_backup_spec.rb │ │ │ │ ├── mysql_server_monitor_spec.rb │ │ │ │ ├── mysql_server_mysqltuner_spec.rb │ │ │ │ └── mysql_server_spec.rb │ │ │ ├── defines │ │ │ │ └── mysql_db_spec.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ ├── spec_helper_system.rb │ │ │ ├── system │ │ │ │ ├── mysql_account_delete_spec.rb │ │ │ │ ├── mysql_backup_spec.rb │ │ │ │ ├── mysql_bindings_spec.rb │ │ │ │ ├── mysql_db_spec.rb │ │ │ │ ├── mysql_server_monitor_spec.rb │ │ │ │ ├── mysql_server_root_password_spec.rb │ │ │ │ ├── mysql_server_spec.rb │ │ │ │ └── types │ │ │ │ │ ├── mysql_grant_spec.rb │ │ │ │ │ └── mysql_user_spec.rb │ │ │ └── unit │ │ │ │ ├── mysql_password_spec.rb │ │ │ │ └── puppet │ │ │ │ ├── functions │ │ │ │ └── mysql_deepmerge_spec.rb │ │ │ │ ├── provider │ │ │ │ ├── database │ │ │ │ │ └── mysql_spec.rb │ │ │ │ ├── database_grant │ │ │ │ │ └── mysql_spec.rb │ │ │ │ ├── database_user │ │ │ │ │ └── mysql_spec.rb │ │ │ │ ├── mysql_database │ │ │ │ │ └── mysql_spec.rb │ │ │ │ └── mysql_user │ │ │ │ │ └── mysql_spec.rb │ │ │ │ └── type │ │ │ │ ├── mysql_database_spec.rb │ │ │ │ ├── mysql_grant_spec.rb │ │ │ │ └── mysql_user_spec.rb │ │ ├── templates │ │ │ ├── my.cnf.erb │ │ │ ├── my.cnf.pass.erb │ │ │ ├── my.conf.cnf.erb │ │ │ └── mysqlbackup.sh.erb │ │ └── tests │ │ │ ├── backup.pp │ │ │ ├── bindings.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 │ │ ├── nginx │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── .travis │ │ │ ├── Gemfile │ │ │ └── Rakefile │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── Puppetfile │ │ ├── Puppetfile.lock │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── composer.json │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── package.pp │ │ │ ├── package │ │ │ │ ├── debian.pp │ │ │ │ ├── redhat.pp │ │ │ │ ├── solaris.pp │ │ │ │ └── suse.pp │ │ │ ├── params.pp │ │ │ ├── resource │ │ │ │ ├── location.pp │ │ │ │ ├── mailhost.pp │ │ │ │ ├── upstream.pp │ │ │ │ └── vhost.pp │ │ │ └── service.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ ├── config_spec.rb │ │ │ │ ├── nginx_spec.rb │ │ │ │ ├── package_spec.rb │ │ │ │ ├── params_spec.rb │ │ │ │ └── service_spec.rb │ │ │ ├── defines │ │ │ │ ├── resource_location_spec.rb │ │ │ │ ├── resource_mailhost_spec.rb │ │ │ │ ├── resource_upstream_spec.rb │ │ │ │ └── resource_vhost_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_system.rb │ │ │ └── system │ │ │ │ ├── basic_spec.rb │ │ │ │ ├── class_spec.rb │ │ │ │ ├── nginx_mail_spec.rb │ │ │ │ ├── nginx_proxy_spec.rb │ │ │ │ └── nginx_vhost_spec.rb │ │ ├── templates │ │ │ ├── conf.d │ │ │ │ ├── nginx.conf.erb │ │ │ │ ├── proxy.conf.erb │ │ │ │ └── upstream.erb │ │ │ ├── mailhost │ │ │ │ ├── mailhost.erb │ │ │ │ └── mailhost_ssl.erb │ │ │ └── vhost │ │ │ │ ├── fastcgi_params.erb │ │ │ │ ├── vhost_footer.erb │ │ │ │ ├── vhost_header.erb │ │ │ │ ├── vhost_location_alias.erb │ │ │ │ ├── vhost_location_directory.erb │ │ │ │ ├── vhost_location_empty.erb │ │ │ │ ├── vhost_location_fastcgi.erb │ │ │ │ ├── vhost_location_proxy.erb │ │ │ │ ├── vhost_location_stub_status.erb │ │ │ │ ├── vhost_ssl_footer.erb │ │ │ │ └── vhost_ssl_header.erb │ │ └── tests │ │ │ ├── init.pp │ │ │ ├── location_alias.pp │ │ │ ├── upstream.pp │ │ │ ├── vhost.pp │ │ │ └── vhost_ssl.pp │ │ ├── ntp │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── class_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11-x64.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ │ ├── ntp_config_spec.rb │ │ │ │ ├── ntp_install_spec.rb │ │ │ │ ├── ntp_parameters_spec.rb │ │ │ │ ├── ntp_service_spec.rb │ │ │ │ ├── preferred_servers_spec.rb │ │ │ │ ├── restrict_spec.rb │ │ │ │ └── unsupported_spec.rb │ │ │ ├── classes │ │ │ │ └── ntp_spec.rb │ │ │ ├── fixtures │ │ │ │ └── modules │ │ │ │ │ └── my_ntp │ │ │ │ │ └── templates │ │ │ │ │ └── ntp.conf.erb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ └── README.markdown │ │ │ │ └── type │ │ │ │ └── README.markdown │ │ ├── templates │ │ │ └── ntp.conf.erb │ │ └── tests │ │ │ └── init.pp │ │ ├── php │ │ ├── .fixtures.yml │ │ ├── .gemfile │ │ ├── .project │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ └── facter │ │ │ │ ├── php_fact_extension_dir.rb │ │ │ │ └── php_fact_version.rb │ │ ├── manifests │ │ │ ├── augeas.pp │ │ │ ├── conf.pp │ │ │ ├── devel.pp │ │ │ ├── ini.pp │ │ │ ├── init.pp │ │ │ ├── module.pp │ │ │ ├── params.pp │ │ │ ├── pear.pp │ │ │ ├── pear │ │ │ │ ├── config.pp │ │ │ │ └── module.pp │ │ │ ├── pecl │ │ │ │ ├── config.pp │ │ │ │ └── module.pp │ │ │ └── spec.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── php_spec.rb │ │ │ ├── defines │ │ │ │ ├── php_module_spec.rb │ │ │ │ └── php_pear_module_spec.rb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ ├── extra-ini.erb │ │ │ └── spec.erb │ │ ├── postgresql │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .project │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ ├── RPM-GPG-KEY-PGDG │ │ │ └── validate_postgresql_connection.sh │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── postgresql_acls_to_resources_hash.rb │ │ │ │ │ ├── postgresql_escape.rb │ │ │ │ │ └── postgresql_password.rb │ │ │ │ ├── provider │ │ │ │ ├── postgresql_conf │ │ │ │ │ └── parsed.rb │ │ │ │ └── postgresql_psql │ │ │ │ │ └── ruby.rb │ │ │ │ └── type │ │ │ │ ├── postgresql_conf.rb │ │ │ │ └── postgresql_psql.rb │ │ ├── manifests │ │ │ ├── client.pp │ │ │ ├── globals.pp │ │ │ ├── lib │ │ │ │ ├── devel.pp │ │ │ │ ├── java.pp │ │ │ │ └── python.pp │ │ │ ├── params.pp │ │ │ ├── repo.pp │ │ │ ├── repo │ │ │ │ ├── apt_postgresql_org.pp │ │ │ │ └── yum_postgresql_org.pp │ │ │ ├── server.pp │ │ │ ├── server │ │ │ │ ├── config.pp │ │ │ │ ├── config_entry.pp │ │ │ │ ├── contrib.pp │ │ │ │ ├── database.pp │ │ │ │ ├── database_grant.pp │ │ │ │ ├── db.pp │ │ │ │ ├── firewall.pp │ │ │ │ ├── grant.pp │ │ │ │ ├── initdb.pp │ │ │ │ ├── install.pp │ │ │ │ ├── passwd.pp │ │ │ │ ├── pg_hba_rule.pp │ │ │ │ ├── plperl.pp │ │ │ │ ├── reload.pp │ │ │ │ ├── role.pp │ │ │ │ ├── service.pp │ │ │ │ ├── table_grant.pp │ │ │ │ └── tablespace.pp │ │ │ └── validate_db_connection.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── client_spec.rb │ │ │ │ ├── common_patterns_spec.rb │ │ │ │ ├── contrib_spec.rb │ │ │ │ ├── lib │ │ │ │ │ ├── devel_spec.rb │ │ │ │ │ ├── java_spec.rb │ │ │ │ │ └── python_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-510-x64.yml │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ │ ├── postgresql_psql_spec.rb │ │ │ │ ├── server │ │ │ │ │ ├── config_entry_spec.rb │ │ │ │ │ ├── database_grant_spec.rb │ │ │ │ │ ├── database_spec.rb │ │ │ │ │ ├── db_spec.rb │ │ │ │ │ ├── grant_spec.rb │ │ │ │ │ ├── pg_hba_rule_spec.rb │ │ │ │ │ ├── plperl_spec.rb │ │ │ │ │ ├── role_spec.rb │ │ │ │ │ ├── table_grant_spec.rb │ │ │ │ │ └── tablespace_spec.rb │ │ │ │ ├── server_spec.rb │ │ │ │ ├── unsupported_spec.rb │ │ │ │ └── validate_db_connection_spec.rb │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ ├── classes │ │ │ │ ├── client_spec.rb │ │ │ │ ├── globals_spec.rb │ │ │ │ ├── lib │ │ │ │ │ ├── devel_spec.rb │ │ │ │ │ ├── java_spec.rb │ │ │ │ │ └── python_spec.rb │ │ │ │ ├── params_spec.rb │ │ │ │ ├── repo_spec.rb │ │ │ │ ├── server │ │ │ │ │ ├── contrib_spec.rb │ │ │ │ │ ├── initdb_spec.rb │ │ │ │ │ └── plperl_spec.rb │ │ │ │ └── server_spec.rb │ │ │ │ ├── defines │ │ │ │ ├── server │ │ │ │ │ ├── config_entry_spec.rb │ │ │ │ │ ├── database_grant_spec.rb │ │ │ │ │ ├── database_spec.rb │ │ │ │ │ ├── db_spec.rb │ │ │ │ │ ├── grant_spec.rb │ │ │ │ │ ├── pg_hba_rule_spec.rb │ │ │ │ │ ├── role_spec.rb │ │ │ │ │ ├── table_grant_spec.rb │ │ │ │ │ └── tablespace_spec.rb │ │ │ │ └── validate_db_connection_spec.rb │ │ │ │ ├── functions │ │ │ │ ├── postgresql_acls_to_resources_hash_spec.rb │ │ │ │ ├── postgresql_escape_spec.rb │ │ │ │ └── postgresql_password_spec.rb │ │ │ │ ├── provider │ │ │ │ └── postgresql_conf │ │ │ │ │ └── parsed_spec.rb │ │ │ │ ├── puppet │ │ │ │ ├── provider │ │ │ │ │ └── postgresql_psql │ │ │ │ │ │ └── ruby_spec.rb │ │ │ │ └── type │ │ │ │ │ └── postgresql_psql_spec.rb │ │ │ │ └── type │ │ │ │ └── postgresql_conf_spec.rb │ │ └── templates │ │ │ └── pg_hba_rule.conf │ │ ├── puphpet │ │ ├── LICENSE │ │ ├── README.md │ │ ├── files │ │ │ └── xdebug_cli_alias.erb │ │ ├── lib │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── hash_key_equals.rb │ │ │ │ └── hash_key_true.rb │ │ ├── manifests │ │ │ ├── adminer.pp │ │ │ ├── apache │ │ │ │ ├── modpagespeed.pp │ │ │ │ └── modspdy.pp │ │ │ ├── hhvm.pp │ │ │ ├── ini.pp │ │ │ ├── init.pp │ │ │ ├── mariadb.pp │ │ │ ├── nginx.pp │ │ │ ├── params.pp │ │ │ ├── php │ │ │ │ ├── extra_repos.pp │ │ │ │ ├── module.pp │ │ │ │ ├── pear.pp │ │ │ │ └── pecl.pp │ │ │ ├── phpmyadmin.pp │ │ │ ├── python │ │ │ │ └── pip.pp │ │ │ ├── ssl_cert.pp │ │ │ ├── xdebug.pp │ │ │ └── xhprof.pp │ │ └── templates │ │ │ ├── apache │ │ │ ├── custom_fragment.erb │ │ │ ├── hhvm-httpd.conf.erb │ │ │ └── mod │ │ │ │ └── spdy │ │ │ │ ├── php-wrapper.erb │ │ │ │ └── spdy_conf.erb │ │ │ └── nginx │ │ │ └── default_conf.erb │ │ ├── puppi │ │ ├── .fixtures.yml │ │ ├── .gemfile │ │ ├── .project │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── README_check.md │ │ ├── README_deploy.md │ │ ├── README_info.md │ │ ├── README_log.md │ │ ├── Rakefile │ │ ├── composer.json │ │ ├── files │ │ │ ├── info │ │ │ │ └── readme │ │ │ │ │ ├── readme │ │ │ │ │ └── readme-default │ │ │ ├── mailpuppicheck │ │ │ ├── mcollective │ │ │ │ ├── mc-puppi │ │ │ │ ├── puppi.ddl │ │ │ │ ├── puppi.rb │ │ │ │ ├── puppicheck │ │ │ │ └── puppideploy │ │ │ └── scripts │ │ │ │ ├── archive.sh │ │ │ │ ├── check_project.sh │ │ │ │ ├── checkwardir.sh │ │ │ │ ├── clean_filelist.sh │ │ │ │ ├── database.sh │ │ │ │ ├── delete.sh │ │ │ │ ├── deploy.sh │ │ │ │ ├── deploy_files.sh │ │ │ │ ├── execute.sh │ │ │ │ ├── firewall.sh │ │ │ │ ├── functions │ │ │ │ ├── get_file.sh │ │ │ │ ├── get_filesfromlist.sh │ │ │ │ ├── get_maven_files.sh │ │ │ │ ├── get_metadata.sh │ │ │ │ ├── git.sh │ │ │ │ ├── header │ │ │ │ ├── predeploy.sh │ │ │ │ ├── predeploy_tar.sh │ │ │ │ ├── report_mail.sh │ │ │ │ ├── report_mongo.sh │ │ │ │ ├── service.sh │ │ │ │ ├── svn.sh │ │ │ │ ├── wait.sh │ │ │ │ ├── yant.sh │ │ │ │ └── yum.sh │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── last_run.rb │ │ │ │ ├── puppi_projects.rb │ │ │ │ └── windows_common_appdata.rb │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── any2bool.rb │ │ │ │ ├── bool2ensure.rb │ │ │ │ ├── get_class_args.rb │ │ │ │ ├── get_magicvar.rb │ │ │ │ ├── get_module_path.rb │ │ │ │ ├── nslookup.rb │ │ │ │ ├── options_lookup.rb │ │ │ │ ├── params_lookup.rb │ │ │ │ └── url_parse.rb │ │ ├── manifests │ │ │ ├── check.pp │ │ │ ├── configure.pp │ │ │ ├── dependencies.pp │ │ │ ├── deploy.pp │ │ │ ├── extras.pp │ │ │ ├── helper.pp │ │ │ ├── helpers.pp │ │ │ ├── info.pp │ │ │ ├── info │ │ │ │ ├── instance.pp │ │ │ │ ├── module.pp │ │ │ │ └── readme.pp │ │ │ ├── init.pp │ │ │ ├── initialize.pp │ │ │ ├── install_packages.pp │ │ │ ├── log.pp │ │ │ ├── mcollective │ │ │ │ ├── client.pp │ │ │ │ └── server.pp │ │ │ ├── netinstall.pp │ │ │ ├── one.pp │ │ │ ├── params.pp │ │ │ ├── project.pp │ │ │ ├── project │ │ │ │ ├── README │ │ │ │ ├── archive.pp │ │ │ │ ├── builder.pp │ │ │ │ ├── dir.pp │ │ │ │ ├── files.pp │ │ │ │ ├── git.pp │ │ │ │ ├── maven.pp │ │ │ │ ├── mysql.pp │ │ │ │ ├── service.pp │ │ │ │ ├── svn.pp │ │ │ │ ├── tar.pp │ │ │ │ ├── war.pp │ │ │ │ ├── y4maven.pp │ │ │ │ └── yum.pp │ │ │ ├── report.pp │ │ │ ├── rollback.pp │ │ │ ├── run.pp │ │ │ ├── runscript.pp │ │ │ ├── skel.pp │ │ │ ├── todo.pp │ │ │ ├── two.pp │ │ │ └── ze.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── puppi_spec.rb │ │ │ ├── defines │ │ │ │ ├── puppi_check_spec.rb │ │ │ │ ├── puppi_deploy_spec.rb │ │ │ │ ├── puppi_helper_spec.rb │ │ │ │ ├── puppi_info_spec.rb │ │ │ │ ├── puppi_initialize_spec.rb │ │ │ │ ├── puppi_log_spec.rb │ │ │ │ ├── puppi_project_spec.rb │ │ │ │ ├── puppi_report_spec.rb │ │ │ │ ├── puppi_rollback_spec.rb │ │ │ │ ├── puppi_run_spec.rb │ │ │ │ ├── puppi_todo_spec.rb │ │ │ │ └── puppi_ze_spec.rb │ │ │ ├── functions │ │ │ │ ├── any2bool_spec.rb │ │ │ │ ├── bool2ensure_spec.rb │ │ │ │ └── url_parse_spec.rb │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ ├── helpers │ │ │ └── standard.yml.erb │ │ │ ├── info.erb │ │ │ ├── info │ │ │ ├── instance.erb │ │ │ ├── module.erb │ │ │ ├── puppet.erb │ │ │ └── readme.erb │ │ │ ├── install_packages.erb │ │ │ ├── log.erb │ │ │ ├── project │ │ │ └── config.erb │ │ │ ├── puppi.conf.erb │ │ │ ├── puppi.erb │ │ │ ├── puppi_clean.erb │ │ │ └── todo.erb │ │ ├── rabbitmq │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── TODO │ │ ├── files │ │ │ ├── README.markdown │ │ │ └── plugins │ │ │ │ ├── amqp_client-2.3.1.ez │ │ │ │ └── rabbit_stomp-2.3.1.ez │ │ ├── lib │ │ │ ├── facter │ │ │ │ └── rabbitmq_erlang_cookie.rb │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── rabbitmq_exchange │ │ │ │ │ └── rabbitmqadmin.rb │ │ │ │ ├── rabbitmq_plugin │ │ │ │ │ └── rabbitmqplugins.rb │ │ │ │ ├── rabbitmq_user │ │ │ │ │ └── rabbitmqctl.rb │ │ │ │ ├── rabbitmq_user_permissions │ │ │ │ │ └── rabbitmqctl.rb │ │ │ │ └── rabbitmq_vhost │ │ │ │ │ └── rabbitmqctl.rb │ │ │ │ └── type │ │ │ │ ├── rabbitmq_exchange.rb │ │ │ │ ├── rabbitmq_plugin.rb │ │ │ │ ├── rabbitmq_user.rb │ │ │ │ ├── rabbitmq_user_permissions.rb │ │ │ │ └── rabbitmq_vhost.rb │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── install │ │ │ │ └── rabbitmqadmin.pp │ │ │ ├── management.pp │ │ │ ├── params.pp │ │ │ ├── repo │ │ │ │ ├── apt.pp │ │ │ │ └── rhel.pp │ │ │ ├── server.pp │ │ │ └── service.pp │ │ ├── spec │ │ │ ├── README.markdown │ │ │ ├── acceptance │ │ │ │ ├── class_spec.rb │ │ │ │ ├── clustering_spec.rb │ │ │ │ ├── delete_guest_user_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── ubuntu-server-1310-x64.yml │ │ │ │ │ └── ubuntu-server-1404-x64.yml │ │ │ │ ├── rabbitmqadmin_spec.rb │ │ │ │ └── server_spec.rb │ │ │ ├── classes │ │ │ │ └── rabbitmq_spec.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ ├── facts │ │ │ │ └── rabbitmq_erlang_cookie_spec.rb │ │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── rabbitmq_exchange │ │ │ │ │ └── rabbitmqadmin_spec.rb │ │ │ │ ├── rabbitmq_user │ │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ │ ├── rabbitmq_user_permissions │ │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ │ └── rabbitmq_vhost │ │ │ │ │ └── rabbitmqctl_spec.rb │ │ │ │ └── type │ │ │ │ ├── rabbitmq_exchange_spec.rb │ │ │ │ ├── rabbitmq_user_permissions_spec.rb │ │ │ │ ├── rabbitmq_user_spec.rb │ │ │ │ └── rabbitmq_vhost_spec.rb │ │ ├── templates │ │ │ ├── README.markdown │ │ │ ├── rabbitmq-env.conf.erb │ │ │ └── rabbitmq.config.erb │ │ └── tests │ │ │ ├── erlang_deps.pp │ │ │ ├── full.pp │ │ │ ├── permissions │ │ │ └── add.pp │ │ │ ├── plugin.pp │ │ │ ├── repo │ │ │ └── apt.pp │ │ │ ├── server.pp │ │ │ ├── service.pp │ │ │ ├── site.pp │ │ │ ├── user │ │ │ └── add.pp │ │ │ └── vhosts │ │ │ └── add.pp │ │ ├── redis │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── Vagrantfile │ │ ├── manifests │ │ │ ├── init.pp │ │ │ └── params.pp │ │ ├── spec │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ ├── redis.debian.conf.erb │ │ │ ├── redis.logrotate.erb │ │ │ └── redis.rhel.conf.erb │ │ └── tests │ │ │ └── init.pp │ │ ├── staging │ │ ├── .fixtures.yml │ │ ├── .travis.yml │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── Vagrantfile │ │ ├── docs │ │ │ ├── deploy.html │ │ │ ├── extract.html │ │ │ ├── file.html │ │ │ └── init.html │ │ ├── files │ │ │ ├── sample │ │ │ ├── sample.tar.bz2 │ │ │ └── sample.tar.gz │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── staging_http_get.rb │ │ │ │ └── staging_windir.rb │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── scope_defaults.rb │ │ │ │ └── staging_parse.rb │ │ ├── manifests │ │ │ ├── deploy.pp │ │ │ ├── extract.pp │ │ │ ├── file.pp │ │ │ ├── init.pp │ │ │ └── params.pp │ │ ├── spec │ │ │ ├── defines │ │ │ │ ├── staging_deploy_spec.rb │ │ │ │ ├── staging_extract_spec.rb │ │ │ │ └── staging_file_spec.rb │ │ │ ├── fixtures │ │ │ │ └── hiera.yaml │ │ │ ├── spec_helper.rb │ │ │ └── unit │ │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── scope_defaults_spec.rb │ │ │ │ └── staging_parse_spec.rb │ │ └── tests │ │ │ ├── deploy.pp │ │ │ ├── extract.pp │ │ │ ├── file.pp │ │ │ ├── init.pp │ │ │ ├── scope_defaults.pp │ │ │ └── staging_parse.pp │ │ ├── stdlib │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── 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 │ │ │ │ │ ├── base64.rb │ │ │ │ │ ├── bool2num.rb │ │ │ │ │ ├── capitalize.rb │ │ │ │ │ ├── chomp.rb │ │ │ │ │ ├── chop.rb │ │ │ │ │ ├── concat.rb │ │ │ │ │ ├── count.rb │ │ │ │ │ ├── deep_merge.rb │ │ │ │ │ ├── defined_with_params.rb │ │ │ │ │ ├── delete.rb │ │ │ │ │ ├── delete_at.rb │ │ │ │ │ ├── delete_undef_values.rb │ │ │ │ │ ├── delete_values.rb │ │ │ │ │ ├── difference.rb │ │ │ │ │ ├── dirname.rb │ │ │ │ │ ├── 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 │ │ │ │ │ ├── intersection.rb │ │ │ │ │ ├── is_array.rb │ │ │ │ │ ├── is_bool.rb │ │ │ │ │ ├── is_domain_name.rb │ │ │ │ │ ├── is_float.rb │ │ │ │ │ ├── is_function_available.rb │ │ │ │ │ ├── is_hash.rb │ │ │ │ │ ├── is_integer.rb │ │ │ │ │ ├── is_ip_address.rb │ │ │ │ │ ├── is_mac_address.rb │ │ │ │ │ ├── is_numeric.rb │ │ │ │ │ ├── is_string.rb │ │ │ │ │ ├── join.rb │ │ │ │ │ ├── join_keys_to_values.rb │ │ │ │ │ ├── keys.rb │ │ │ │ │ ├── loadyaml.rb │ │ │ │ │ ├── lstrip.rb │ │ │ │ │ ├── max.rb │ │ │ │ │ ├── member.rb │ │ │ │ │ ├── merge.rb │ │ │ │ │ ├── min.rb │ │ │ │ │ ├── num2bool.rb │ │ │ │ │ ├── parsejson.rb │ │ │ │ │ ├── parseyaml.rb │ │ │ │ │ ├── pick.rb │ │ │ │ │ ├── pick_default.rb │ │ │ │ │ ├── prefix.rb │ │ │ │ │ ├── range.rb │ │ │ │ │ ├── reject.rb │ │ │ │ │ ├── reverse.rb │ │ │ │ │ ├── rstrip.rb │ │ │ │ │ ├── shuffle.rb │ │ │ │ │ ├── size.rb │ │ │ │ │ ├── sort.rb │ │ │ │ │ ├── squeeze.rb │ │ │ │ │ ├── str2bool.rb │ │ │ │ │ ├── str2saltedsha512.rb │ │ │ │ │ ├── strftime.rb │ │ │ │ │ ├── strip.rb │ │ │ │ │ ├── suffix.rb │ │ │ │ │ ├── swapcase.rb │ │ │ │ │ ├── time.rb │ │ │ │ │ ├── to_bytes.rb │ │ │ │ │ ├── type.rb │ │ │ │ │ ├── union.rb │ │ │ │ │ ├── unique.rb │ │ │ │ │ ├── upcase.rb │ │ │ │ │ ├── uriescape.rb │ │ │ │ │ ├── validate_absolute_path.rb │ │ │ │ │ ├── validate_array.rb │ │ │ │ │ ├── validate_augeas.rb │ │ │ │ │ ├── validate_bool.rb │ │ │ │ │ ├── validate_cmd.rb │ │ │ │ │ ├── validate_hash.rb │ │ │ │ │ ├── validate_ipv4_address.rb │ │ │ │ │ ├── validate_ipv6_address.rb │ │ │ │ │ ├── validate_re.rb │ │ │ │ │ ├── validate_slength.rb │ │ │ │ │ ├── validate_string.rb │ │ │ │ │ ├── values.rb │ │ │ │ │ ├── values_at.rb │ │ │ │ │ └── zip.rb │ │ │ │ ├── provider │ │ │ │ └── file_line │ │ │ │ │ └── ruby.rb │ │ │ │ └── type │ │ │ │ ├── anchor.rb │ │ │ │ └── file_line.rb │ │ ├── manifests │ │ │ ├── init.pp │ │ │ └── stages.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── abs_spec.rb │ │ │ │ ├── any2array_spec.rb │ │ │ │ ├── base64_spec.rb │ │ │ │ ├── bool2num_spec.rb │ │ │ │ ├── build_csv.rb │ │ │ │ ├── capitalize_spec.rb │ │ │ │ ├── chomp_spec.rb │ │ │ │ ├── chop_spec.rb │ │ │ │ ├── concat_spec.rb │ │ │ │ ├── count_spec.rb │ │ │ │ ├── deep_merge_spec.rb │ │ │ │ ├── defined_with_params_spec.rb │ │ │ │ ├── delete_at_spec.rb │ │ │ │ ├── delete_spec.rb │ │ │ │ ├── delete_undef_values_spec.rb │ │ │ │ ├── delete_values_spec.rb │ │ │ │ ├── difference_spec.rb │ │ │ │ ├── dirname_spec.rb │ │ │ │ ├── downcase_spec.rb │ │ │ │ ├── empty_spec.rb │ │ │ │ ├── ensure_packages_spec.rb │ │ │ │ ├── ensure_resource_spec.rb │ │ │ │ ├── flatten_spec.rb │ │ │ │ ├── floor_spec.rb │ │ │ │ ├── fqdn_rotate_spec.rb │ │ │ │ ├── get_module_path_spec.rb │ │ │ │ ├── getparam_spec.rb │ │ │ │ ├── getvar_spec.rb │ │ │ │ ├── grep_spec.rb │ │ │ │ ├── has_interface_with_spec.rb │ │ │ │ ├── has_ip_address_spec.rb │ │ │ │ ├── has_ip_network_spec.rb │ │ │ │ ├── has_key_spec.rb │ │ │ │ ├── hash_spec.rb │ │ │ │ ├── intersection_spec.rb │ │ │ │ ├── is_array_spec.rb │ │ │ │ ├── is_bool_spec.rb │ │ │ │ ├── is_domain_name_spec.rb │ │ │ │ ├── is_float_spec.rb │ │ │ │ ├── is_function_available_spec.rb │ │ │ │ ├── is_hash_spec.rb │ │ │ │ ├── is_integer_spec.rb │ │ │ │ ├── is_ip_address_spec.rb │ │ │ │ ├── is_mac_address_spec.rb │ │ │ │ ├── is_numeric_spec.rb │ │ │ │ ├── is_string_spec.rb │ │ │ │ ├── join_keys_to_values_spec.rb │ │ │ │ ├── join_spec.rb │ │ │ │ ├── keys_spec.rb │ │ │ │ ├── loadyaml_spec.rb │ │ │ │ ├── lstrip_spec.rb │ │ │ │ ├── max_spec.rb │ │ │ │ ├── member_spec.rb │ │ │ │ ├── merge_spec.rb │ │ │ │ ├── min_spec.rb │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-6-vcloud.yml │ │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11-x64.yml │ │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ │ ├── num2bool_spec.rb │ │ │ │ ├── parsejson_spec.rb │ │ │ │ ├── parseyaml_spec.rb │ │ │ │ ├── pick_default_spec.rb │ │ │ │ ├── pick_spec.rb │ │ │ │ ├── prefix_spec.rb │ │ │ │ ├── range_spec.rb │ │ │ │ ├── reject_spec.rb │ │ │ │ ├── reverse_spec.rb │ │ │ │ ├── rstrip_spec.rb │ │ │ │ ├── shuffle_spec.rb │ │ │ │ ├── size_spec.rb │ │ │ │ ├── sort_spec.rb │ │ │ │ ├── squeeze_spec.rb │ │ │ │ ├── str2bool_spec.rb │ │ │ │ ├── str2saltedsha512_spec.rb │ │ │ │ ├── strftime_spec.rb │ │ │ │ ├── strip_spec.rb │ │ │ │ ├── suffix_spec.rb │ │ │ │ ├── swapcase_spec.rb │ │ │ │ ├── time_spec.rb │ │ │ │ ├── to_bytes_spec.rb │ │ │ │ ├── type_spec.rb │ │ │ │ ├── union_spec.rb │ │ │ │ ├── unique_spec.rb │ │ │ │ ├── unsupported_spec.rb │ │ │ │ ├── upcase_spec.rb │ │ │ │ ├── uriescape_spec.rb │ │ │ │ ├── validate_absolute_path_spec.rb │ │ │ │ ├── validate_array_spec.rb │ │ │ │ ├── validate_augeas_spec.rb │ │ │ │ ├── validate_bool_spec.rb │ │ │ │ ├── validate_cmd_spec.rb │ │ │ │ ├── validate_hash_spec.rb │ │ │ │ ├── validate_ipv4_address_spec.rb │ │ │ │ ├── validate_ipv6_address_spec.rb │ │ │ │ ├── validate_re_spec.rb │ │ │ │ ├── validate_slength_spec.rb │ │ │ │ ├── validate_string_spec.rb │ │ │ │ ├── values_at_spec.rb │ │ │ │ ├── values_spec.rb │ │ │ │ └── zip_spec.rb │ │ │ ├── classes │ │ │ │ └── anchor_spec.rb │ │ │ ├── fixtures │ │ │ │ └── dscacheutil │ │ │ │ │ └── root │ │ │ ├── functions │ │ │ │ ├── abs_spec.rb │ │ │ │ ├── any2array_spec.rb │ │ │ │ ├── base64_spec.rb │ │ │ │ ├── bool2num_spec.rb │ │ │ │ ├── capitalize_spec.rb │ │ │ │ ├── chomp_spec.rb │ │ │ │ ├── chop_spec.rb │ │ │ │ ├── concat_spec.rb │ │ │ │ ├── count_spec.rb │ │ │ │ ├── deep_merge_spec.rb │ │ │ │ ├── defined_with_params_spec.rb │ │ │ │ ├── delete_at_spec.rb │ │ │ │ ├── delete_spec.rb │ │ │ │ ├── delete_undef_values_spec.rb │ │ │ │ ├── delete_values_spec.rb │ │ │ │ ├── difference_spec.rb │ │ │ │ ├── dirname_spec.rb │ │ │ │ ├── downcase_spec.rb │ │ │ │ ├── empty_spec.rb │ │ │ │ ├── ensure_packages_spec.rb │ │ │ │ ├── ensure_resource_spec.rb │ │ │ │ ├── flatten_spec.rb │ │ │ │ ├── floor_spec.rb │ │ │ │ ├── fqdn_rotate_spec.rb │ │ │ │ ├── get_module_path_spec.rb │ │ │ │ ├── getparam_spec.rb │ │ │ │ ├── getvar_spec.rb │ │ │ │ ├── grep_spec.rb │ │ │ │ ├── has_interface_with_spec.rb │ │ │ │ ├── has_ip_address_spec.rb │ │ │ │ ├── has_ip_network_spec.rb │ │ │ │ ├── has_key_spec.rb │ │ │ │ ├── hash_spec.rb │ │ │ │ ├── intersection_spec.rb │ │ │ │ ├── is_array_spec.rb │ │ │ │ ├── is_bool_spec.rb │ │ │ │ ├── is_domain_name_spec.rb │ │ │ │ ├── is_float_spec.rb │ │ │ │ ├── is_function_available.rb │ │ │ │ ├── is_hash_spec.rb │ │ │ │ ├── is_integer_spec.rb │ │ │ │ ├── is_ip_address_spec.rb │ │ │ │ ├── is_mac_address_spec.rb │ │ │ │ ├── is_numeric_spec.rb │ │ │ │ ├── is_string_spec.rb │ │ │ │ ├── join_keys_to_values_spec.rb │ │ │ │ ├── join_spec.rb │ │ │ │ ├── keys_spec.rb │ │ │ │ ├── loadyaml_spec.rb │ │ │ │ ├── lstrip_spec.rb │ │ │ │ ├── max_spec.rb │ │ │ │ ├── member_spec.rb │ │ │ │ ├── merge_spec.rb │ │ │ │ ├── min_spec.rb │ │ │ │ ├── num2bool_spec.rb │ │ │ │ ├── parsejson_spec.rb │ │ │ │ ├── parseyaml_spec.rb │ │ │ │ ├── pick_default_spec.rb │ │ │ │ ├── pick_spec.rb │ │ │ │ ├── prefix_spec.rb │ │ │ │ ├── range_spec.rb │ │ │ │ ├── reject_spec.rb │ │ │ │ ├── reverse_spec.rb │ │ │ │ ├── rstrip_spec.rb │ │ │ │ ├── shuffle_spec.rb │ │ │ │ ├── size_spec.rb │ │ │ │ ├── sort_spec.rb │ │ │ │ ├── squeeze_spec.rb │ │ │ │ ├── str2bool_spec.rb │ │ │ │ ├── str2saltedsha512_spec.rb │ │ │ │ ├── strftime_spec.rb │ │ │ │ ├── strip_spec.rb │ │ │ │ ├── suffix_spec.rb │ │ │ │ ├── swapcase_spec.rb │ │ │ │ ├── time_spec.rb │ │ │ │ ├── to_bytes_spec.rb │ │ │ │ ├── type_spec.rb │ │ │ │ ├── union_spec.rb │ │ │ │ ├── unique_spec.rb │ │ │ │ ├── upcase_spec.rb │ │ │ │ ├── uriescape_spec.rb │ │ │ │ ├── validate_absolute_path_spec.rb │ │ │ │ ├── validate_array_spec.rb │ │ │ │ ├── validate_augeas_spec.rb │ │ │ │ ├── validate_bool_spec.rb │ │ │ │ ├── validate_cmd_spec.rb │ │ │ │ ├── validate_hash_spec.rb │ │ │ │ ├── validate_ipv4_address_spec.rb │ │ │ │ ├── validate_ipv6_address_spec.rb │ │ │ │ ├── validate_re_spec.rb │ │ │ │ ├── validate_slength_spec.rb │ │ │ │ ├── validate_string_spec.rb │ │ │ │ ├── values_at_spec.rb │ │ │ │ ├── values_spec.rb │ │ │ │ └── zip_spec.rb │ │ │ ├── lib │ │ │ │ └── puppet_spec │ │ │ │ │ ├── compiler.rb │ │ │ │ │ ├── database.rb │ │ │ │ │ ├── files.rb │ │ │ │ │ ├── fixtures.rb │ │ │ │ │ ├── matchers.rb │ │ │ │ │ ├── modules.rb │ │ │ │ │ ├── pops.rb │ │ │ │ │ ├── scope.rb │ │ │ │ │ ├── settings.rb │ │ │ │ │ └── verbose.rb │ │ │ ├── monkey_patches │ │ │ │ ├── alias_should_to_must.rb │ │ │ │ └── publicize_methods.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── spec_helper_acceptance.rb │ │ │ └── unit │ │ │ │ ├── facter │ │ │ │ ├── coverage │ │ │ │ │ ├── .last_run.json │ │ │ │ │ ├── .resultset.json │ │ │ │ │ ├── assets │ │ │ │ │ │ └── 0.8.0 │ │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ │ ├── colorbox │ │ │ │ │ │ │ ├── border.png │ │ │ │ │ │ │ ├── controls.png │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ └── loading_background.png │ │ │ │ │ │ │ ├── favicon_green.png │ │ │ │ │ │ │ ├── favicon_red.png │ │ │ │ │ │ │ ├── favicon_yellow.png │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ ├── magnify.png │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── index.html │ │ │ │ ├── facter_dot_d_spec.rb │ │ │ │ ├── pe_version_spec.rb │ │ │ │ ├── root_home_spec.rb │ │ │ │ └── util │ │ │ │ │ └── puppet_settings_spec.rb │ │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ └── file_line │ │ │ │ │ └── ruby_spec.rb │ │ │ │ └── type │ │ │ │ ├── anchor_spec.rb │ │ │ │ └── file_line_spec.rb │ │ └── tests │ │ │ ├── file_line.pp │ │ │ ├── has_interface_with.pp │ │ │ ├── has_ip_address.pp │ │ │ ├── has_ip_network.pp │ │ │ └── init.pp │ │ ├── supervisord │ │ ├── .fixtures.yml │ │ ├── .nodeset.yml │ │ ├── .travis.yml │ │ ├── Changelog │ │ ├── Gemfile │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── array2csv.rb │ │ │ │ └── hash2csv.rb │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── eventlistener.pp │ │ │ ├── fcgi_program.pp │ │ │ ├── group.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── pip.pp │ │ │ ├── program.pp │ │ │ ├── reload.pp │ │ │ ├── service.pp │ │ │ └── supervisorctl.pp │ │ ├── spec │ │ │ ├── acceptance │ │ │ │ ├── nodesets │ │ │ │ │ ├── centos-65-i386.yml │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ ├── debian-73-i386.yml │ │ │ │ │ ├── debian-73-x64.yml │ │ │ │ │ └── default.yml │ │ │ │ └── supervisord_spec.rb │ │ │ ├── classes │ │ │ │ └── supervisord_spec.rb │ │ │ ├── defines │ │ │ │ ├── eventlistener_spec.rb │ │ │ │ ├── fcgi_program_spec.rb │ │ │ │ ├── group_spec.rb │ │ │ │ ├── program_spec.rb │ │ │ │ └── supervisorctl.rb │ │ │ ├── functions │ │ │ │ ├── array2csv_spec.rb │ │ │ │ └── hash2csv_spec.rb │ │ │ ├── spec_helper.rb │ │ │ └── spec_helper_acceptance.rb │ │ ├── templates │ │ │ ├── conf │ │ │ │ ├── eventlistener.erb │ │ │ │ ├── fcgi_program.erb │ │ │ │ ├── group.erb │ │ │ │ └── program.erb │ │ │ ├── init │ │ │ │ ├── Debian │ │ │ │ │ ├── defaults.erb │ │ │ │ │ └── init.erb │ │ │ │ └── RedHat │ │ │ │ │ ├── defaults.erb │ │ │ │ │ └── init.erb │ │ │ ├── supervisord_inet.erb │ │ │ ├── supervisord_main.erb │ │ │ └── supervisord_unix.erb │ │ └── tests │ │ │ ├── group.pp │ │ │ ├── init.pp │ │ │ └── program.pp │ │ ├── sysctl │ │ ├── ChangeLog │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── base.pp │ │ │ └── init.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── sysctl_base_spec.rb │ │ │ ├── defines │ │ │ │ └── sysctl_init_spec.rb │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ └── sysctl.d-file.erb │ │ └── tests │ │ │ ├── base.pp │ │ │ └── init.pp │ │ ├── vcsrepo │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.BZR.markdown │ │ ├── README.CVS.markdown │ │ ├── README.GIT.markdown │ │ ├── README.HG.markdown │ │ ├── README.SVN.markdown │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── examples │ │ │ ├── bzr │ │ │ │ ├── branch.pp │ │ │ │ └── init_repo.pp │ │ │ ├── cvs │ │ │ │ ├── local.pp │ │ │ │ └── remote.pp │ │ │ ├── git │ │ │ │ ├── bare_init.pp │ │ │ │ ├── clone.pp │ │ │ │ └── working_copy_init.pp │ │ │ ├── hg │ │ │ │ ├── clone.pp │ │ │ │ └── init_repo.pp │ │ │ └── svn │ │ │ │ ├── checkout.pp │ │ │ │ └── server.pp │ │ ├── lib │ │ │ └── puppet │ │ │ │ ├── provider │ │ │ │ ├── vcsrepo.rb │ │ │ │ └── vcsrepo │ │ │ │ │ ├── bzr.rb │ │ │ │ │ ├── cvs.rb │ │ │ │ │ ├── dummy.rb │ │ │ │ │ ├── git.rb │ │ │ │ │ ├── hg.rb │ │ │ │ │ └── svn.rb │ │ │ │ └── type │ │ │ │ └── vcsrepo.rb │ │ └── spec │ │ │ ├── fixtures │ │ │ ├── bzr_version_info.txt │ │ │ ├── git_branch_a.txt │ │ │ ├── git_branch_feature_bar.txt │ │ │ ├── git_branch_none.txt │ │ │ ├── hg_parents.txt │ │ │ ├── hg_tags.txt │ │ │ └── svn_info.txt │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── support │ │ │ ├── filesystem_helpers.rb │ │ │ └── fixture_helpers.rb │ │ │ └── unit │ │ │ └── puppet │ │ │ ├── provider │ │ │ └── vcsrepo │ │ │ │ ├── bzr_spec.rb │ │ │ │ ├── cvs_spec.rb │ │ │ │ ├── git_spec.rb │ │ │ │ ├── hg_spec.rb │ │ │ │ └── svn_spec.rb │ │ │ └── type │ │ │ └── README.markdown │ │ └── yum │ │ ├── .fixtures.yml │ │ ├── .gemfile │ │ ├── .project │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ ├── Amazon.3 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-6 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── CentOS.4 │ │ │ └── rpm-gpg │ │ │ │ └── RPM-GPG-KEY-EPEL │ │ ├── CentOS.5 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-5 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ │ ├── RPM-GPG-KEY.art │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── CentOS.6 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-6 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-PGDG │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ │ ├── RPM-GPG-KEY.art │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── Scientific.6 │ │ │ └── rpm-gpg │ │ │ │ ├── RPM-GPG-KEY-CentOS-5 │ │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ │ ├── RPM-GPG-KEY-beta │ │ │ │ ├── RPM-GPG-KEY-dawson │ │ │ │ ├── RPM-GPG-KEY-redhat-beta │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-former │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-release │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-rhx │ │ │ │ ├── RPM-GPG-KEY-redhat-release │ │ │ │ ├── RPM-GPG-KEY-remi │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ │ ├── RPM-GPG-KEY-sl │ │ │ │ ├── RPM-GPG-KEY-sl3 │ │ │ │ ├── RPM-GPG-KEY-sl4 │ │ │ │ ├── RPM-GPG-KEY-sl5 │ │ │ │ ├── RPM-GPG-KEY-sl6 │ │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ │ └── RubyWorks.GPG.key │ │ ├── empty │ │ │ └── .placeholder │ │ ├── rpm-gpg │ │ │ ├── RPM-GPG-KEY-CentOS-5 │ │ │ ├── RPM-GPG-KEY-CentOS-6 │ │ │ ├── RPM-GPG-KEY-EPEL │ │ │ ├── RPM-GPG-KEY-EPEL-4 │ │ │ ├── RPM-GPG-KEY-EPEL-5 │ │ │ ├── RPM-GPG-KEY-EPEL-6 │ │ │ ├── RPM-GPG-KEY-PGDG │ │ │ ├── RPM-GPG-KEY-RBEL │ │ │ ├── RPM-GPG-KEY-beta │ │ │ ├── RPM-GPG-KEY-elrepo.org │ │ │ ├── RPM-GPG-KEY-kbsingh │ │ │ ├── RPM-GPG-KEY-redhat-beta │ │ │ ├── RPM-GPG-KEY-redhat-legacy-former │ │ │ ├── RPM-GPG-KEY-redhat-legacy-release │ │ │ ├── RPM-GPG-KEY-redhat-legacy-rhx │ │ │ ├── RPM-GPG-KEY-redhat-release │ │ │ ├── RPM-GPG-KEY-remi │ │ │ ├── RPM-GPG-KEY-rpmforge-dag │ │ │ ├── RPM-GPG-KEY-sl │ │ │ ├── RPM-GPG-KEY-webtatic-andy │ │ │ ├── RPM-GPG-KEY.art │ │ │ ├── RPM-GPG-KEY.atrpms │ │ │ └── RubyWorks.GPG.key │ │ └── yum-updatesd.conf │ │ ├── manifests │ │ ├── cron.pp │ │ ├── defaults.pp │ │ ├── init.pp │ │ ├── managed_yumrepo.pp │ │ ├── params.pp │ │ ├── plugin.pp │ │ ├── prerequisites.pp │ │ ├── repo │ │ │ ├── 10gen.pp │ │ │ ├── atomic.pp │ │ │ ├── atrpms.pp │ │ │ ├── centalt.pp │ │ │ ├── centos4.pp │ │ │ ├── centos5.pp │ │ │ ├── centos6.pp │ │ │ ├── centos_testing.pp │ │ │ ├── ceph.pp │ │ │ ├── elasticsearch10.pp │ │ │ ├── elasticsearch90.pp │ │ │ ├── elrepo.pp │ │ │ ├── epel.pp │ │ │ ├── foreman.pp │ │ │ ├── integ_ganeti.pp │ │ │ ├── jpackage5.pp │ │ │ ├── jpackage6.pp │ │ │ ├── karan.pp │ │ │ ├── logstash13.pp │ │ │ ├── mongodb.pp │ │ │ ├── monitoringsucks.pp │ │ │ ├── newrelic.pp │ │ │ ├── nginx.pp │ │ │ ├── openstack_grizzly.pp │ │ │ ├── passenger.pp │ │ │ ├── pgdg91.pp │ │ │ ├── pgdg92.pp │ │ │ ├── pgdg93.pp │ │ │ ├── puppetdevel.pp │ │ │ ├── puppetlabs.pp │ │ │ ├── rbel.pp │ │ │ ├── remi.pp │ │ │ ├── remi_php55.pp │ │ │ ├── repoforge.pp │ │ │ ├── repoforgeextras.pp │ │ │ ├── rpmforge.pp │ │ │ ├── sl5.pp │ │ │ ├── sl6.pp │ │ │ ├── tmz.pp │ │ │ ├── varnish.pp │ │ │ ├── vfabric.pp │ │ │ ├── virtualbox.pp │ │ │ └── webtatic.pp │ │ └── updatesd.pp │ │ ├── spec │ │ ├── classes │ │ │ └── yum_spec.rb │ │ └── spec_helper.rb │ │ └── templates │ │ └── yum-cron.erb │ └── shell │ ├── execute-files.sh │ ├── important-notices.sh │ ├── important-notices.txt │ ├── initial-setup.sh │ ├── os-detect.sh │ ├── r10k.sh │ ├── self-promotion.txt │ ├── ssh-keygen.sh │ └── update-puppet.sh └── presentation ├── tlt_lti_workshop_2014.pdf └── tlt_lti_workshop_2014.pptx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/README.md -------------------------------------------------------------------------------- /demo/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/Vagrantfile -------------------------------------------------------------------------------- /demo/html/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/css/default.css -------------------------------------------------------------------------------- /demo/html/css/helloharvard.css: -------------------------------------------------------------------------------- 1 | th { 2 | text-align: left; 3 | } -------------------------------------------------------------------------------- /demo/html/images/harvard_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/images/harvard_shield.png -------------------------------------------------------------------------------- /demo/html/ims-blti/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/ims-blti/LICENSE.txt -------------------------------------------------------------------------------- /demo/html/ims-blti/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/ims-blti/OAuth.php -------------------------------------------------------------------------------- /demo/html/ims-blti/OAuthBody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/ims-blti/OAuthBody.php -------------------------------------------------------------------------------- /demo/html/ims-blti/TrivialOAuthDataStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/ims-blti/TrivialOAuthDataStore.php -------------------------------------------------------------------------------- /demo/html/ims-blti/blti.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/ims-blti/blti.php -------------------------------------------------------------------------------- /demo/html/ims-blti/blti_util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/ims-blti/blti_util.php -------------------------------------------------------------------------------- /demo/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/index.html -------------------------------------------------------------------------------- /demo/html/info.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /demo/html/lms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/lms.php -------------------------------------------------------------------------------- /demo/html/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/html/misc.php -------------------------------------------------------------------------------- /demo/html/tool-helloworld.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/puphpet/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/.gitattributes -------------------------------------------------------------------------------- /demo/puphpet/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/config.yaml -------------------------------------------------------------------------------- /demo/puphpet/files/dot/.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/.bash_aliases -------------------------------------------------------------------------------- /demo/puphpet/files/dot/.bash_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/.bash_git -------------------------------------------------------------------------------- /demo/puphpet/files/dot/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/.vimrc -------------------------------------------------------------------------------- /demo/puphpet/files/dot/ssh/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/ssh/id_rsa -------------------------------------------------------------------------------- /demo/puphpet/files/dot/ssh/id_rsa.ppk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/ssh/id_rsa.ppk -------------------------------------------------------------------------------- /demo/puphpet/files/dot/ssh/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/ssh/id_rsa.pub -------------------------------------------------------------------------------- /demo/puphpet/files/dot/ssh/insecure_private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/ssh/insecure_private_key -------------------------------------------------------------------------------- /demo/puphpet/files/dot/ssh/root_id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/ssh/root_id_rsa -------------------------------------------------------------------------------- /demo/puphpet/files/dot/ssh/root_id_rsa.ppk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/ssh/root_id_rsa.ppk -------------------------------------------------------------------------------- /demo/puphpet/files/dot/ssh/root_id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/files/dot/ssh/root_id_rsa.pub -------------------------------------------------------------------------------- /demo/puphpet/files/exec-always/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/puphpet/files/exec-once/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/puphpet/files/startup-always/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/puphpet/files/startup-once/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/Puppetfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/hiera.yaml -------------------------------------------------------------------------------- /demo/puphpet/puppet/manifest.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/manifest.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/.puppet-lint.rc -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/CONTRIBUTING.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/README.passenger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/README.passenger.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/files/httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/files/httpd -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/lib/puppet/type/a2mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/lib/puppet/type/a2mod.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/balancer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/balancer.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/confd/no_accf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/confd/no_accf.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/default_mods.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/default_mods.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/dev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/dev.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/listen.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/listen.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/actions.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/actions.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/alias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/alias.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/auth_kerb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/auth_kerb.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/autoindex.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/autoindex.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/cache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/cache.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/cgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/cgi.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/cgid.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/cgid.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/dav.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/dav.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/dav_fs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/dav_fs.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/dav_svn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/dav_svn.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/deflate.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/deflate.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/dev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/dev.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/dir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/dir.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/event.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/event.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/expires.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/expires.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/fastcgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/fastcgi.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/fcgid.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/fcgid.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/headers.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/headers.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/include.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/include.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/info.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/info.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/itk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/itk.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/ldap.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/ldap.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/mime.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/mime.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/nss.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/nss.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/pagespeed.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/pagespeed.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/passenger.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/passenger.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/perl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/perl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/peruser.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/peruser.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/php.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/prefork.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/prefork.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/proxy.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/proxy_ajp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/proxy_ajp.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/python.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/rewrite.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/rewrite.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/rpaf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/rpaf.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/setenvif.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/setenvif.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/speling.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/speling.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/ssl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/status.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/status.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/suexec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/suexec.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/suphp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/suphp.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/userdir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/userdir.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/worker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/worker.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/wsgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/wsgi.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mod/xsendfile.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mod/xsendfile.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/mpm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/mpm.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/package.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/package.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/php.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/proxy.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/python.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/service.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/ssl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/version.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/version.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/manifests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/manifests/vhost.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/acceptance/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/spec/acceptance/version.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/classes/dev_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/spec/classes/dev_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/defines/mod_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/spec/defines/mod_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/defines/vhost_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/spec/defines/vhost_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/fixtures/files/spec: -------------------------------------------------------------------------------- 1 | # This is a file only for spec testing 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb: -------------------------------------------------------------------------------- 1 | Fake template for rspec. 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/spec/spec.opts -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/httpd.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/httpd.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/listen.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/listen.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/mod/cgid.conf.erb: -------------------------------------------------------------------------------- 1 | ScriptSock "<%= @cgisock_path %>" 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/mod/dav_fs.conf.erb: -------------------------------------------------------------------------------- 1 | DAVLockDB "<%= @dav_lock %>" 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/mod/dir.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/mod/dir.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/mod/itk.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/mod/itk.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/mod/load.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/mod/load.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/mod/nss.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/mod/nss.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/mod/ssl.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/mod/ssl.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/ports_header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/ports_header.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost/_block.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost/_block.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost/_itk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost/_itk.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost/_proxy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost/_proxy.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost/_rack.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost/_rack.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost/_ssl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost/_ssl.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost/_suphp.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost/_suphp.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/templates/vhost/_wsgi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/templates/vhost/_wsgi.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/apache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/apache.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/dev.pp: -------------------------------------------------------------------------------- 1 | include apache::dev 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/init.pp: -------------------------------------------------------------------------------- 1 | include apache 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/mod_load_params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/mod_load_params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/mods.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/mods.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/mods_custom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/mods_custom.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/php.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/vhost.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/vhost_directories.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/vhost_directories.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/vhost_ip_based.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/vhost_ip_based.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apache/tests/vhost_ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apache/tests/vhost_ssl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/.project -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/.puppet-lint.rc: -------------------------------------------------------------------------------- 1 | --no-single_quote_string_with_variables-check 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/backports.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/backports.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/builddep.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/builddep.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/conf.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/debian/testing.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/debian/testing.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/debian/unstable.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/debian/unstable.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/force.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/force.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/key.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/pin.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/ppa.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/release.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/release.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/source.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/manifests/update.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/manifests/update.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/acceptance/apt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/acceptance/apt_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/acceptance/class_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/acceptance/class_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/acceptance/conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/acceptance/conf_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/acceptance/force_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/acceptance/force_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/acceptance/pin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/acceptance/pin_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/classes/apt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/classes/apt_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/classes/params_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/classes/params_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/classes/release_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/classes/release_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/defines/builddep_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/defines/builddep_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/defines/conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/defines/conf_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/defines/force_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/defines/force_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/defines/key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/defines/key_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/defines/pin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/defines/pin_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/defines/ppa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/defines/ppa_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/defines/source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/defines/source_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/templates/10periodic.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/templates/10periodic.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/templates/pin.pref.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/templates/pin.pref.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/templates/source.list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/templates/source.list.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/builddep.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/builddep.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/debian/testing.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/debian/testing.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/debian/unstable.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/debian/unstable.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/force.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/force.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/key.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/params.pp: -------------------------------------------------------------------------------- 1 | include apt::params 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/pin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/pin.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/ppa.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/ppa.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/release.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/release.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/source.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/apt/tests/source.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/apt/tests/unattended_upgrades.pp: -------------------------------------------------------------------------------- 1 | include apt::unattended_upgrades 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/beanstalkd/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/beanstalkd/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/beanstalkd/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/beanstalkd/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/beanstalkd/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/beanstalkd/run-tests.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/beanstalkd/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/beanstalkd/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/manifests/exec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/manifests/exec.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/manifests/project.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/manifests/project.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/spec/spec.opts -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/templates/exec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/templates/exec.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/composer/tests/project.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/composer/tests/project.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/CHANGELOG -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/files/concatfragments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/files/concatfragments.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/files/concatfragments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/files/concatfragments.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/manifests/fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/manifests/fragment.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/manifests/setup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/manifests/setup.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/tests/fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/tests/fragment.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/concat/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/concat/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/Puppetfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/README -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/apt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/apt.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/dis.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/dis.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/dl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/dl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/en.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/en.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/git.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/git.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/git/drush.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/git/drush.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/make.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/make.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/run.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/run.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/manifests/status.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/manifests/status.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/.ci/.module: -------------------------------------------------------------------------------- 1 | drush 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/.ci/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/.ci/Vagrantfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/.ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/.ci/test.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/.ci/vagrant_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/.ci/vagrant_test.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/apt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/apt.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/defaults.pp: -------------------------------------------------------------------------------- 1 | include drush::defaults 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/dis.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/dis.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/dl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/dl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/en.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/en.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/git.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/git.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/git/drush.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/git/drush.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/init.pp: -------------------------------------------------------------------------------- 1 | include drush 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/make.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/make.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/run.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/run.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/drush/tests/status.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/drush/tests/status.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/CHANGELOG -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/CONTRIBUTING.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/CONTRIBUTORS -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/manifests/config.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/manifests/java.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/manifests/java.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/manifests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/manifests/plugin.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/manifests/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/manifests/python.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/elasticsearch/manifests/ruby.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/elasticsearch/manifests/ruby.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/CONTRIBUTING.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/README.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/manifests/linux.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/manifests/linux.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/firewall/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/firewall/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/CHANGELOG -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/lib/facter/git_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/lib/facter/git_version.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/manifests/gitosis.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/manifests/gitosis.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/manifests/subtree.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/manifests/subtree.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/git/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/tests/gitosis.pp: -------------------------------------------------------------------------------- 1 | class { 'git::gitosis': } 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/git/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'git': } 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mailcatcher/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mailcatcher/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/CHANGELOG -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/client.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/db.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/globals.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/globals.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/replset.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/replset.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/repo.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/repo/apt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/repo/apt.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/repo/yum.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/repo/yum.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/manifests/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/tests/globals.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/tests/globals.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { '::mongodb': } 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/tests/replicaset.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/tests/replicaset.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mongodb/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mongodb/tests/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/TODO -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/files/mysqltuner.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/files/mysqltuner.pl -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/manifests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/manifests/backup.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/manifests/bindings.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/manifests/bindings.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/manifests/client.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/manifests/db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/manifests/db.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/manifests/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/spec/spec.opts -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/templates/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/templates/my.cnf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/tests/backup.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/bindings.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::bindings': 2 | php_enable => 'true', 3 | } 4 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/init.pp: -------------------------------------------------------------------------------- 1 | include mysql 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/java.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::java':} 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/mysql_database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/tests/mysql_database.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/mysql_grant.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/tests/mysql_grant.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/mysql_user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/tests/mysql_user.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/perl.pp: -------------------------------------------------------------------------------- 1 | include mysql::perl 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/python.pp: -------------------------------------------------------------------------------- 1 | class { 'mysql::python':} 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/ruby.pp: -------------------------------------------------------------------------------- 1 | include mysql::ruby 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/tests/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/mysql/tests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/mysql/tests/server/config.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/.travis/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/.travis/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/.travis/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/.travis/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/Puppetfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/Puppetfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/Puppetfile.lock -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/README.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/composer.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/manifests/config.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/manifests/package.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/manifests/package.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/manifests/service.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/tests/location_alias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/tests/location_alias.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/tests/upstream.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/tests/upstream.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/tests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/tests/vhost.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/nginx/tests/vhost_ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/nginx/tests/vhost_ssl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/CONTRIBUTING.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/README.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/manifests/config.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/manifests/install.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/manifests/service.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/spec/classes/ntp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/spec/classes/ntp_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb: -------------------------------------------------------------------------------- 1 | #my uber ntp config 2 | # 3 | 4 | server foobar 5 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/spec/spec.opts -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/templates/ntp.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/templates/ntp.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/ntp/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/ntp/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/.gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/.project -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/augeas.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/augeas.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/conf.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/devel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/devel.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/ini.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/ini.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/module.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/pear.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/pear.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/pear/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/pear/config.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/pear/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/pear/module.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/pecl/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/pecl/config.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/pecl/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/pecl/module.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/manifests/spec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/manifests/spec.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/spec/classes/php_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/spec/classes/php_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/templates/extra-ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/templates/extra-ini.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/php/templates/spec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/php/templates/spec.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/.project -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/NOTICE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/manifests/client.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/manifests/repo.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/manifests/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/postgresql/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/postgresql/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/adminer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/adminer.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/hhvm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/hhvm.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/ini.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/ini.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/mariadb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/mariadb.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/nginx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/nginx.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/php/pear.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/php/pear.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/php/pecl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/php/pecl.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/ssl_cert.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/ssl_cert.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/xdebug.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/xdebug.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/manifests/xhprof.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puphpet/manifests/xhprof.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puphpet/templates/apache/custom_fragment.erb: -------------------------------------------------------------------------------- 1 | <%= @vhost['custom_fragment'] %> 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/.gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/.project -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/README_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/README_check.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/README_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/README_deploy.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/README_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/README_info.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/README_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/README_log.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/composer.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/info/readme/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/info/readme/readme -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/mailpuppicheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/mailpuppicheck -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/archive.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/delete.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/deploy.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/execute.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/functions -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/git.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/header -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/service.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/svn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/svn.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/wait.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/yant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/yant.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/files/scripts/yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/files/scripts/yum.sh -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/lib/facter/last_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/lib/facter/last_run.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/check.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/check.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/configure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/configure.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/deploy.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/extras.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/extras.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/helper.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/helper.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/helpers.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/helpers.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/info.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/info.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/info/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/info/module.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/info/readme.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/info/readme.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/initialize.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/initialize.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/log.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/log.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/netinstall.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/netinstall.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/one.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/one.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project/README -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project/dir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project/dir.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project/git.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project/git.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project/svn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project/svn.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project/tar.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project/tar.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project/war.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project/war.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/project/yum.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/project/yum.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/report.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/report.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/rollback.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/rollback.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/run.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/run.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/runscript.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/runscript.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/skel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/skel.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/todo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/todo.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/two.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/two.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/manifests/ze.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/manifests/ze.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/templates/info.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/templates/info.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/templates/log.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/templates/log.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/templates/puppi.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/templates/puppi.conf.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/templates/puppi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/templates/puppi.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/puppi/templates/todo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/puppi/templates/todo.erb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/CHANGELOG -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/TODO -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/files/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/files/README.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/manifests/config.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/manifests/install.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/manifests/repo/apt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/manifests/repo/apt.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/manifests/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/manifests/service.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/spec/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/spec/README.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/spec/spec.opts -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/erlang_deps.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/tests/erlang_deps.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/full.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/tests/full.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/tests/plugin.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/repo/apt.pp: -------------------------------------------------------------------------------- 1 | # requires pupetlabs-apt 2 | include rabbitmq::repo::apt 3 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/tests/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/service.pp: -------------------------------------------------------------------------------- 1 | class { 'rabbitmq::service': } 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/tests/site.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/user/add.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/rabbitmq/tests/user/add.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/rabbitmq/tests/vhosts/add.pp: -------------------------------------------------------------------------------- 1 | rabbitmq_vhost { ['fooey', 'blah']: } 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/CHANGELOG -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/Vagrantfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/redis/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/redis/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/Vagrantfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/docs/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/docs/deploy.html -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/docs/extract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/docs/extract.html -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/docs/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/docs/file.html -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/docs/init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/docs/init.html -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/files/sample: -------------------------------------------------------------------------------- 1 | sample file to test module. 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/files/sample.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/files/sample.tar.bz2 -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/files/sample.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/files/sample.tar.gz -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/manifests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/manifests/deploy.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/manifests/extract.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/manifests/extract.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/manifests/file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/manifests/file.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/tests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/tests/deploy.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/tests/extract.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/tests/extract.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/tests/file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/tests/file.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/tests/init.pp: -------------------------------------------------------------------------------- 1 | include staging 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/staging/tests/staging_parse.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/staging/tests/staging_parse.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/CHANGELOG.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/CONTRIBUTING.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/Gemfile.lock -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/README.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/README_SPECS.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/README_SPECS.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/lib/facter/root_home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/lib/facter/root_home.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/manifests/stages.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/manifests/stages.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/spec/spec.opts -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/tests/file_line.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/tests/file_line.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/tests/has_ip_address.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/tests/has_ip_address.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/tests/has_ip_network.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/stdlib/tests/has_ip_network.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/stdlib/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/.nodeset.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/Changelog -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/manifests/group.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/manifests/group.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/manifests/pip.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/manifests/pip.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/tests/group.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/tests/group.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/supervisord/tests/program.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/supervisord/tests/program.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/ChangeLog -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/manifests/base.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/metadata.json -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/tests/base.pp: -------------------------------------------------------------------------------- 1 | include sysctl::base 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/sysctl/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/sysctl/tests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/CHANGELOG -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/Gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/README.BZR.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/README.BZR.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/README.CVS.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/README.CVS.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/README.GIT.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/README.GIT.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/README.HG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/README.HG.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/README.SVN.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/README.SVN.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/README.markdown -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/examples/bzr/branch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/examples/bzr/branch.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/examples/cvs/local.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/examples/cvs/local.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/examples/cvs/remote.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/examples/cvs/remote.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/examples/git/clone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/examples/git/clone.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/examples/hg/clone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/examples/hg/clone.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/examples/svn/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/examples/svn/server.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/spec/spec.opts -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/vcsrepo/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/vcsrepo/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/.fixtures.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/.gemfile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/.project -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/.travis.yml -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/LICENSE -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/Modulefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/README.md -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/Rakefile -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/files/empty/.placeholder: -------------------------------------------------------------------------------- 1 | # Placeholder for git 2 | -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/files/yum-updatesd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/files/yum-updatesd.conf -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/cron.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/cron.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/defaults.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/defaults.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/init.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/params.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/plugin.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/prerequisites.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/prerequisites.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/10gen.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/10gen.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/atomic.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/atomic.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/atrpms.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/atrpms.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/centalt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/centalt.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/centos4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/centos4.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/centos5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/centos5.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/centos6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/centos6.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/ceph.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/ceph.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/elrepo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/elrepo.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/epel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/epel.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/foreman.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/foreman.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/karan.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/karan.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/mongodb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/mongodb.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/newrelic.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/newrelic.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/nginx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/nginx.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/pgdg91.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/pgdg91.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/pgdg92.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/pgdg92.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/pgdg93.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/pgdg93.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/rbel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/rbel.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/remi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/remi.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/rpmforge.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/rpmforge.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/sl5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/sl5.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/sl6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/sl6.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/tmz.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/tmz.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/varnish.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/varnish.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/vfabric.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/vfabric.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/repo/webtatic.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/repo/webtatic.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/manifests/updatesd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/manifests/updatesd.pp -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/spec/classes/yum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/spec/classes/yum_spec.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/spec/spec_helper.rb -------------------------------------------------------------------------------- /demo/puphpet/puppet/modules/yum/templates/yum-cron.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/puppet/modules/yum/templates/yum-cron.erb -------------------------------------------------------------------------------- /demo/puphpet/shell/execute-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/execute-files.sh -------------------------------------------------------------------------------- /demo/puphpet/shell/important-notices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/important-notices.sh -------------------------------------------------------------------------------- /demo/puphpet/shell/important-notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/important-notices.txt -------------------------------------------------------------------------------- /demo/puphpet/shell/initial-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/initial-setup.sh -------------------------------------------------------------------------------- /demo/puphpet/shell/os-detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/os-detect.sh -------------------------------------------------------------------------------- /demo/puphpet/shell/r10k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/r10k.sh -------------------------------------------------------------------------------- /demo/puphpet/shell/self-promotion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/self-promotion.txt -------------------------------------------------------------------------------- /demo/puphpet/shell/ssh-keygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/ssh-keygen.sh -------------------------------------------------------------------------------- /demo/puphpet/shell/update-puppet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/demo/puphpet/shell/update-puppet.sh -------------------------------------------------------------------------------- /presentation/tlt_lti_workshop_2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/presentation/tlt_lti_workshop_2014.pdf -------------------------------------------------------------------------------- /presentation/tlt_lti_workshop_2014.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harvard-ATG/workshop-lti-basic/HEAD/presentation/tlt_lti_workshop_2014.pptx --------------------------------------------------------------------------------