├── .editorconfig ├── .github └── workflows │ ├── CI.yaml │ └── smoke.yaml ├── .gitignore ├── .octocatalog-diff.cfg.rb ├── .puppet-lint.rc ├── LICENSE ├── Makefile ├── Puppetfile ├── README.md ├── bin ├── build_wordpress_md.sh ├── config-version.sh ├── decrypt_cert_key.sh ├── doc_sites_info.php ├── octodiff-docker.sh ├── patches │ └── octocatalogdiff_issue261_compilationdir.rb.patch ├── provision-instance.sh └── verify_cert.sh ├── doc ├── README.md ├── access.md ├── backup.md ├── cdn-cert.md ├── cdn.md ├── dns.md ├── email.md ├── eslint.md ├── former-services.md ├── grunt.md ├── hosting.md ├── miscweb.md ├── monitoring.md ├── puppet.md ├── runbook-fastly-debug.md ├── runbook-nginx-debug.md ├── search.md └── wordpress.md ├── environment.conf ├── hiera.yaml ├── hieradata ├── common.yaml ├── environments │ ├── production │ │ ├── common.yaml │ │ └── roles │ │ │ ├── codeorigin.yaml │ │ │ ├── contentorigin.yaml │ │ │ ├── docs │ │ │ └── builder.yaml │ │ │ ├── gruntjscom.yaml │ │ │ └── miscweb.yaml │ └── staging │ │ ├── common.yaml │ │ └── roles │ │ ├── codeorigin.yaml │ │ ├── docs │ │ ├── builder.yaml │ │ └── wordpress.yaml │ │ └── gruntjscom.yaml └── roles │ ├── blogs.yaml │ ├── codeorigin.yaml │ ├── contentorigin.yaml │ ├── docs │ ├── builder.yaml │ ├── filestash.yaml │ └── wordpress.yaml │ ├── gruntjscom.yaml │ ├── puppet.yaml │ └── search.yaml ├── manifests └── site.pp ├── modules ├── debian │ ├── functions │ │ └── codename.pp │ └── types │ │ └── codename.pp ├── git │ ├── manifests │ │ ├── clone.pp │ │ └── config.pp │ └── templates │ │ └── gitconfig.erb ├── jqlib │ ├── functions │ │ ├── format_puppet_title.pp │ │ ├── has_puppetdb.pp │ │ ├── puppetdb_query.pp │ │ ├── resource_hosts.pp │ │ └── secret.pp │ ├── lib │ │ ├── facter │ │ │ └── nameservers.rb │ │ └── puppet │ │ │ └── functions │ │ │ └── jqlib │ │ │ └── autogen_password.rb │ └── types │ │ └── ensure.pp ├── letsencrypt │ ├── files │ │ ├── cert-compare.py │ │ └── override-no-quiet.conf │ ├── manifests │ │ ├── certbot.pp │ │ ├── certificate.pp │ │ └── hook.pp │ └── templates │ │ └── cli.ini.erb ├── mariadb │ ├── manifests │ │ ├── command.pp │ │ ├── database.pp │ │ ├── grant.pp │ │ ├── server.pp │ │ └── user.pp │ ├── templates │ │ └── server │ │ │ └── mariadb.cnf.erb │ └── types │ │ ├── grants.pp │ │ └── user │ │ └── auth.pp ├── nftables │ ├── files │ │ ├── base.nft │ │ └── init.nft │ └── manifests │ │ ├── allow.pp │ │ ├── conf.pp │ │ └── init.pp ├── nginx │ ├── files │ │ ├── default.nginx │ │ ├── nginx.conf │ │ └── status.nginx │ ├── functions │ │ └── tls_config.pp │ └── manifests │ │ ├── init.pp │ │ └── site.pp ├── notifier │ ├── manifests │ │ ├── git_update.pp │ │ ├── init.pp │ │ └── run_command.pp │ ├── templates │ │ ├── git_update │ │ │ └── hook.sh.erb │ │ ├── hook.js.erb │ │ └── notifier.service.erb │ └── types │ │ └── gittarget.pp ├── php │ ├── manifests │ │ ├── fpm.pp │ │ └── init.pp │ ├── templates │ │ └── fpm │ │ │ └── pool.ini.erb │ └── types │ │ └── extension.pp ├── postgresql │ ├── files │ │ └── base_hba.conf │ └── manifests │ │ ├── database.pp │ │ ├── extension.pp │ │ ├── init.pp │ │ └── user.pp ├── profile │ ├── files │ │ ├── builder │ │ │ └── builder-do-update.sh │ │ ├── codeorigin │ │ │ └── set-last-modified.sh │ │ └── puppet │ │ │ ├── agent │ │ │ └── run-puppet-agent.sh │ │ │ ├── common │ │ │ ├── README │ │ │ └── keyring.gpg │ │ │ └── server │ │ │ ├── jq-decom-instance.sh │ │ │ ├── puppet-merge.sh │ │ │ └── sysusers.conf │ ├── lib │ │ └── puppet │ │ │ └── functions │ │ │ └── profile │ │ │ └── miscweb │ │ │ └── group_certificates.rb │ ├── manifests │ │ ├── base.pp │ │ ├── base │ │ │ ├── apt.pp │ │ │ └── digitalocean.pp │ │ ├── builder.pp │ │ ├── certbot.pp │ │ ├── codeorigin.pp │ │ ├── contentorigin.pp │ │ ├── filestash.pp │ │ ├── gruntjscom.pp │ │ ├── miscweb.pp │ │ ├── nginx.pp │ │ ├── notifier.pp │ │ ├── puppet │ │ │ ├── agent.pp │ │ │ ├── common.pp │ │ │ ├── puppetdb.pp │ │ │ ├── puppetdb_database.pp │ │ │ └── server.pp │ │ ├── ssh │ │ │ └── ca.pp │ │ ├── tarsnap.pp │ │ ├── typesense.pp │ │ └── wordpress │ │ │ ├── base.pp │ │ │ ├── blogs.pp │ │ │ └── docs.pp │ ├── templates │ │ ├── builder │ │ │ └── repo-config.js.erb │ │ ├── codeorigin │ │ │ └── site.nginx.erb │ │ ├── contentorigin │ │ │ └── site.nginx.erb │ │ ├── filestash │ │ │ └── vhost.nginx.erb │ │ ├── gruntjscom │ │ │ ├── gruntjscom.service.erb │ │ │ └── site.nginx.erb │ │ ├── miscweb │ │ │ ├── docs.jquery.com.nginx.erb │ │ │ ├── redirect.nginx.erb │ │ │ └── site.nginx.erb │ │ ├── notifier │ │ │ └── site.nginx.erb │ │ ├── puppet │ │ │ ├── agent │ │ │ │ └── puppet.conf.erb │ │ │ ├── puppetdb │ │ │ │ ├── config │ │ │ │ │ ├── config.ini.erb │ │ │ │ │ └── database.ini.erb │ │ │ │ └── site.nginx.erb │ │ │ └── server │ │ │ │ ├── config │ │ │ │ ├── auth.conf.erb │ │ │ │ └── puppetserver.conf.erb │ │ │ │ ├── default.erb │ │ │ │ ├── g10k.yaml.erb │ │ │ │ ├── puppet.conf.erb │ │ │ │ ├── puppetdb.conf.erb │ │ │ │ ├── routes.yaml.erb │ │ │ │ └── web │ │ │ │ ├── known_hosts.erb │ │ │ │ └── site.nginx.erb │ │ ├── typesense │ │ │ └── site.nginx.erb │ │ └── wordpress │ │ │ ├── base │ │ │ └── default-tls.nginx.erb │ │ │ ├── blogs │ │ │ └── jquery-config.php.erb │ │ │ └── docs │ │ │ ├── jquery-config.php.erb │ │ │ ├── proxies.nginx.erb │ │ │ └── redirects.nginx.erb │ └── types │ │ ├── certbot │ │ └── certificate.pp │ │ ├── contentorigin │ │ └── site.pp │ │ ├── docs │ │ ├── proxy.pp │ │ ├── redirect.pp │ │ ├── site.pp │ │ └── sites.pp │ │ ├── miscweb │ │ ├── redirect.pp │ │ └── site.pp │ │ └── wordpress │ │ └── blogs │ │ └── sites.pp ├── role │ ├── lib │ │ └── puppet │ │ │ └── functions │ │ │ └── role.rb │ └── manifests │ │ ├── blogs.pp │ │ ├── codeorigin.pp │ │ ├── contentorigin.pp │ │ ├── docs │ │ ├── builder.pp │ │ ├── filestash.pp │ │ └── wordpress.pp │ │ ├── gruntjscom.pp │ │ ├── miscweb.pp │ │ ├── puppet.pp │ │ └── search.pp ├── ssh │ ├── functions │ │ └── client │ │ │ └── from_restriction.pp │ ├── lib │ │ ├── facter │ │ │ ├── ssh_ca_host_certificate.rb │ │ │ └── ssh_local_key.rb │ │ └── puppet │ │ │ └── functions │ │ │ └── ssh │ │ │ └── ssh_sign_host_certificate.rb │ ├── manifests │ │ ├── client.pp │ │ ├── client │ │ │ └── user_key.pp │ │ ├── server.pp │ │ └── server │ │ │ ├── ca_signed_hostkey.pp │ │ │ └── config.pp │ ├── templates │ │ └── server │ │ │ └── sshd_config.erb │ └── types │ │ └── keytype.pp ├── sudo │ ├── files │ │ └── sudoers │ ├── manifests │ │ ├── init.pp │ │ └── rule.pp │ └── templates │ │ └── rule.erb ├── systemd │ ├── manifests │ │ ├── init.pp │ │ ├── override.pp │ │ ├── service.pp │ │ ├── sysuser.pp │ │ ├── timer.pp │ │ ├── tmpfile.pp │ │ └── unit.pp │ └── templates │ │ └── timer │ │ ├── service.erb │ │ └── timer.erb ├── tarsnap │ ├── files │ │ ├── README │ │ ├── backup │ │ │ ├── jq-tarsnap-take-backup.sh │ │ │ └── tarsnap.conf │ │ ├── keymgmt │ │ │ └── jq-tarsnap-keygen.sh │ │ ├── mariadb │ │ │ └── jq-tarsnap-dump-mariadb.sh │ │ └── tarsnap-archive-keyring.asc │ ├── manifests │ │ ├── backup.pp │ │ ├── init.pp │ │ ├── keymgmt.pp │ │ └── mariadb.pp │ └── templates │ │ └── keymgmt │ │ └── config.sh ├── typesense │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── server.ini.erb ├── users │ ├── files │ │ ├── config │ │ │ ├── adduser.conf │ │ │ └── sysusers.conf │ │ └── home │ │ │ ├── skel │ │ │ └── .gitkeep │ │ │ └── taavi │ │ │ ├── .bash_profile │ │ │ ├── .bashrc │ │ │ ├── .gitconfig │ │ │ └── .tmux.conf │ ├── manifests │ │ ├── account.pp │ │ ├── config.pp │ │ ├── group.pp │ │ └── init.pp │ └── types │ │ └── ssh_key.pp └── wordpress │ ├── manifests │ ├── cli.pp │ └── site.pp │ ├── templates │ └── site │ │ ├── jquery-config-base.php.erb │ │ ├── site.nginx.erb │ │ └── subsite.nginx.erb │ └── types │ ├── path.pp │ ├── plugin.pp │ ├── sidebar.pp │ ├── theme.pp │ └── user.pp ├── test ├── CodeoriginTest.php ├── ContentoriginTest.php ├── MiscwebTest.php ├── ReleasesTest.php ├── Unit.php └── WpdocsTest.php └── test_data ├── bootstrap.sh ├── hiera.yaml └── private ├── README ├── files ├── ssh_ca │ ├── ca │ └── ca.pub └── tarsnap-keys │ ├── contentorigin-02.ops.jquery.net.key │ ├── filestash-01.ops.jquery.net.key │ ├── puppet-03.ops.jquery.net.key │ ├── puppet-04.ops.jquery.net.key │ ├── wp-04.ops.jquery.net.key │ ├── wp-05.ops.jquery.net.key │ └── wpblogs-01.ops.jquery.net.key └── hieradata └── common.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.github/workflows/smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/.github/workflows/smoke.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor_modules 2 | -------------------------------------------------------------------------------- /.octocatalog-diff.cfg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/.octocatalog-diff.cfg.rb -------------------------------------------------------------------------------- /.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/.puppet-lint.rc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/Makefile -------------------------------------------------------------------------------- /Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/Puppetfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/README.md -------------------------------------------------------------------------------- /bin/build_wordpress_md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/build_wordpress_md.sh -------------------------------------------------------------------------------- /bin/config-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/config-version.sh -------------------------------------------------------------------------------- /bin/decrypt_cert_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/decrypt_cert_key.sh -------------------------------------------------------------------------------- /bin/doc_sites_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/doc_sites_info.php -------------------------------------------------------------------------------- /bin/octodiff-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/octodiff-docker.sh -------------------------------------------------------------------------------- /bin/patches/octocatalogdiff_issue261_compilationdir.rb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/patches/octocatalogdiff_issue261_compilationdir.rb.patch -------------------------------------------------------------------------------- /bin/provision-instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/provision-instance.sh -------------------------------------------------------------------------------- /bin/verify_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/bin/verify_cert.sh -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/access.md -------------------------------------------------------------------------------- /doc/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/backup.md -------------------------------------------------------------------------------- /doc/cdn-cert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/cdn-cert.md -------------------------------------------------------------------------------- /doc/cdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/cdn.md -------------------------------------------------------------------------------- /doc/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/dns.md -------------------------------------------------------------------------------- /doc/email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/email.md -------------------------------------------------------------------------------- /doc/eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/eslint.md -------------------------------------------------------------------------------- /doc/former-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/former-services.md -------------------------------------------------------------------------------- /doc/grunt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/grunt.md -------------------------------------------------------------------------------- /doc/hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/hosting.md -------------------------------------------------------------------------------- /doc/miscweb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/miscweb.md -------------------------------------------------------------------------------- /doc/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/monitoring.md -------------------------------------------------------------------------------- /doc/puppet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/puppet.md -------------------------------------------------------------------------------- /doc/runbook-fastly-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/runbook-fastly-debug.md -------------------------------------------------------------------------------- /doc/runbook-nginx-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/runbook-nginx-debug.md -------------------------------------------------------------------------------- /doc/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/search.md -------------------------------------------------------------------------------- /doc/wordpress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/doc/wordpress.md -------------------------------------------------------------------------------- /environment.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/environment.conf -------------------------------------------------------------------------------- /hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hiera.yaml -------------------------------------------------------------------------------- /hieradata/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/common.yaml -------------------------------------------------------------------------------- /hieradata/environments/production/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/production/common.yaml -------------------------------------------------------------------------------- /hieradata/environments/production/roles/codeorigin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/production/roles/codeorigin.yaml -------------------------------------------------------------------------------- /hieradata/environments/production/roles/contentorigin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/production/roles/contentorigin.yaml -------------------------------------------------------------------------------- /hieradata/environments/production/roles/docs/builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/production/roles/docs/builder.yaml -------------------------------------------------------------------------------- /hieradata/environments/production/roles/gruntjscom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/production/roles/gruntjscom.yaml -------------------------------------------------------------------------------- /hieradata/environments/production/roles/miscweb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/production/roles/miscweb.yaml -------------------------------------------------------------------------------- /hieradata/environments/staging/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/staging/common.yaml -------------------------------------------------------------------------------- /hieradata/environments/staging/roles/codeorigin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/staging/roles/codeorigin.yaml -------------------------------------------------------------------------------- /hieradata/environments/staging/roles/docs/builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/staging/roles/docs/builder.yaml -------------------------------------------------------------------------------- /hieradata/environments/staging/roles/docs/wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/staging/roles/docs/wordpress.yaml -------------------------------------------------------------------------------- /hieradata/environments/staging/roles/gruntjscom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/environments/staging/roles/gruntjscom.yaml -------------------------------------------------------------------------------- /hieradata/roles/blogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/blogs.yaml -------------------------------------------------------------------------------- /hieradata/roles/codeorigin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/codeorigin.yaml -------------------------------------------------------------------------------- /hieradata/roles/contentorigin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/contentorigin.yaml -------------------------------------------------------------------------------- /hieradata/roles/docs/builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/docs/builder.yaml -------------------------------------------------------------------------------- /hieradata/roles/docs/filestash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/docs/filestash.yaml -------------------------------------------------------------------------------- /hieradata/roles/docs/wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/docs/wordpress.yaml -------------------------------------------------------------------------------- /hieradata/roles/gruntjscom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/gruntjscom.yaml -------------------------------------------------------------------------------- /hieradata/roles/puppet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/puppet.yaml -------------------------------------------------------------------------------- /hieradata/roles/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/hieradata/roles/search.yaml -------------------------------------------------------------------------------- /manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/manifests/site.pp -------------------------------------------------------------------------------- /modules/debian/functions/codename.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/debian/functions/codename.pp -------------------------------------------------------------------------------- /modules/debian/types/codename.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/debian/types/codename.pp -------------------------------------------------------------------------------- /modules/git/manifests/clone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/git/manifests/clone.pp -------------------------------------------------------------------------------- /modules/git/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/git/manifests/config.pp -------------------------------------------------------------------------------- /modules/git/templates/gitconfig.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/git/templates/gitconfig.erb -------------------------------------------------------------------------------- /modules/jqlib/functions/format_puppet_title.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/functions/format_puppet_title.pp -------------------------------------------------------------------------------- /modules/jqlib/functions/has_puppetdb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/functions/has_puppetdb.pp -------------------------------------------------------------------------------- /modules/jqlib/functions/puppetdb_query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/functions/puppetdb_query.pp -------------------------------------------------------------------------------- /modules/jqlib/functions/resource_hosts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/functions/resource_hosts.pp -------------------------------------------------------------------------------- /modules/jqlib/functions/secret.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/functions/secret.pp -------------------------------------------------------------------------------- /modules/jqlib/lib/facter/nameservers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/lib/facter/nameservers.rb -------------------------------------------------------------------------------- /modules/jqlib/lib/puppet/functions/jqlib/autogen_password.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/lib/puppet/functions/jqlib/autogen_password.rb -------------------------------------------------------------------------------- /modules/jqlib/types/ensure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/jqlib/types/ensure.pp -------------------------------------------------------------------------------- /modules/letsencrypt/files/cert-compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/letsencrypt/files/cert-compare.py -------------------------------------------------------------------------------- /modules/letsencrypt/files/override-no-quiet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/letsencrypt/files/override-no-quiet.conf -------------------------------------------------------------------------------- /modules/letsencrypt/manifests/certbot.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/letsencrypt/manifests/certbot.pp -------------------------------------------------------------------------------- /modules/letsencrypt/manifests/certificate.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/letsencrypt/manifests/certificate.pp -------------------------------------------------------------------------------- /modules/letsencrypt/manifests/hook.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/letsencrypt/manifests/hook.pp -------------------------------------------------------------------------------- /modules/letsencrypt/templates/cli.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/letsencrypt/templates/cli.ini.erb -------------------------------------------------------------------------------- /modules/mariadb/manifests/command.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/manifests/command.pp -------------------------------------------------------------------------------- /modules/mariadb/manifests/database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/manifests/database.pp -------------------------------------------------------------------------------- /modules/mariadb/manifests/grant.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/manifests/grant.pp -------------------------------------------------------------------------------- /modules/mariadb/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/manifests/server.pp -------------------------------------------------------------------------------- /modules/mariadb/manifests/user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/manifests/user.pp -------------------------------------------------------------------------------- /modules/mariadb/templates/server/mariadb.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/templates/server/mariadb.cnf.erb -------------------------------------------------------------------------------- /modules/mariadb/types/grants.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/types/grants.pp -------------------------------------------------------------------------------- /modules/mariadb/types/user/auth.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/mariadb/types/user/auth.pp -------------------------------------------------------------------------------- /modules/nftables/files/base.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nftables/files/base.nft -------------------------------------------------------------------------------- /modules/nftables/files/init.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nftables/files/init.nft -------------------------------------------------------------------------------- /modules/nftables/manifests/allow.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nftables/manifests/allow.pp -------------------------------------------------------------------------------- /modules/nftables/manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nftables/manifests/conf.pp -------------------------------------------------------------------------------- /modules/nftables/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nftables/manifests/init.pp -------------------------------------------------------------------------------- /modules/nginx/files/default.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nginx/files/default.nginx -------------------------------------------------------------------------------- /modules/nginx/files/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nginx/files/nginx.conf -------------------------------------------------------------------------------- /modules/nginx/files/status.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nginx/files/status.nginx -------------------------------------------------------------------------------- /modules/nginx/functions/tls_config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nginx/functions/tls_config.pp -------------------------------------------------------------------------------- /modules/nginx/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nginx/manifests/init.pp -------------------------------------------------------------------------------- /modules/nginx/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/nginx/manifests/site.pp -------------------------------------------------------------------------------- /modules/notifier/manifests/git_update.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/notifier/manifests/git_update.pp -------------------------------------------------------------------------------- /modules/notifier/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/notifier/manifests/init.pp -------------------------------------------------------------------------------- /modules/notifier/manifests/run_command.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/notifier/manifests/run_command.pp -------------------------------------------------------------------------------- /modules/notifier/templates/git_update/hook.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/notifier/templates/git_update/hook.sh.erb -------------------------------------------------------------------------------- /modules/notifier/templates/hook.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/notifier/templates/hook.js.erb -------------------------------------------------------------------------------- /modules/notifier/templates/notifier.service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/notifier/templates/notifier.service.erb -------------------------------------------------------------------------------- /modules/notifier/types/gittarget.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/notifier/types/gittarget.pp -------------------------------------------------------------------------------- /modules/php/manifests/fpm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/php/manifests/fpm.pp -------------------------------------------------------------------------------- /modules/php/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/php/manifests/init.pp -------------------------------------------------------------------------------- /modules/php/templates/fpm/pool.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/php/templates/fpm/pool.ini.erb -------------------------------------------------------------------------------- /modules/php/types/extension.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/php/types/extension.pp -------------------------------------------------------------------------------- /modules/postgresql/files/base_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/postgresql/files/base_hba.conf -------------------------------------------------------------------------------- /modules/postgresql/manifests/database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/postgresql/manifests/database.pp -------------------------------------------------------------------------------- /modules/postgresql/manifests/extension.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/postgresql/manifests/extension.pp -------------------------------------------------------------------------------- /modules/postgresql/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/postgresql/manifests/init.pp -------------------------------------------------------------------------------- /modules/postgresql/manifests/user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/postgresql/manifests/user.pp -------------------------------------------------------------------------------- /modules/profile/files/builder/builder-do-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/builder/builder-do-update.sh -------------------------------------------------------------------------------- /modules/profile/files/codeorigin/set-last-modified.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/codeorigin/set-last-modified.sh -------------------------------------------------------------------------------- /modules/profile/files/puppet/agent/run-puppet-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/puppet/agent/run-puppet-agent.sh -------------------------------------------------------------------------------- /modules/profile/files/puppet/common/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/puppet/common/README -------------------------------------------------------------------------------- /modules/profile/files/puppet/common/keyring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/puppet/common/keyring.gpg -------------------------------------------------------------------------------- /modules/profile/files/puppet/server/jq-decom-instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/puppet/server/jq-decom-instance.sh -------------------------------------------------------------------------------- /modules/profile/files/puppet/server/puppet-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/puppet/server/puppet-merge.sh -------------------------------------------------------------------------------- /modules/profile/files/puppet/server/sysusers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/files/puppet/server/sysusers.conf -------------------------------------------------------------------------------- /modules/profile/lib/puppet/functions/profile/miscweb/group_certificates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/lib/puppet/functions/profile/miscweb/group_certificates.rb -------------------------------------------------------------------------------- /modules/profile/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/base.pp -------------------------------------------------------------------------------- /modules/profile/manifests/base/apt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/base/apt.pp -------------------------------------------------------------------------------- /modules/profile/manifests/base/digitalocean.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/base/digitalocean.pp -------------------------------------------------------------------------------- /modules/profile/manifests/builder.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/builder.pp -------------------------------------------------------------------------------- /modules/profile/manifests/certbot.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/certbot.pp -------------------------------------------------------------------------------- /modules/profile/manifests/codeorigin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/codeorigin.pp -------------------------------------------------------------------------------- /modules/profile/manifests/contentorigin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/contentorigin.pp -------------------------------------------------------------------------------- /modules/profile/manifests/filestash.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/filestash.pp -------------------------------------------------------------------------------- /modules/profile/manifests/gruntjscom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/gruntjscom.pp -------------------------------------------------------------------------------- /modules/profile/manifests/miscweb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/miscweb.pp -------------------------------------------------------------------------------- /modules/profile/manifests/nginx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/nginx.pp -------------------------------------------------------------------------------- /modules/profile/manifests/notifier.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/notifier.pp -------------------------------------------------------------------------------- /modules/profile/manifests/puppet/agent.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/puppet/agent.pp -------------------------------------------------------------------------------- /modules/profile/manifests/puppet/common.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/puppet/common.pp -------------------------------------------------------------------------------- /modules/profile/manifests/puppet/puppetdb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/puppet/puppetdb.pp -------------------------------------------------------------------------------- /modules/profile/manifests/puppet/puppetdb_database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/puppet/puppetdb_database.pp -------------------------------------------------------------------------------- /modules/profile/manifests/puppet/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/puppet/server.pp -------------------------------------------------------------------------------- /modules/profile/manifests/ssh/ca.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/ssh/ca.pp -------------------------------------------------------------------------------- /modules/profile/manifests/tarsnap.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/tarsnap.pp -------------------------------------------------------------------------------- /modules/profile/manifests/typesense.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/typesense.pp -------------------------------------------------------------------------------- /modules/profile/manifests/wordpress/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/wordpress/base.pp -------------------------------------------------------------------------------- /modules/profile/manifests/wordpress/blogs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/wordpress/blogs.pp -------------------------------------------------------------------------------- /modules/profile/manifests/wordpress/docs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/manifests/wordpress/docs.pp -------------------------------------------------------------------------------- /modules/profile/templates/builder/repo-config.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/builder/repo-config.js.erb -------------------------------------------------------------------------------- /modules/profile/templates/codeorigin/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/codeorigin/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/contentorigin/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/contentorigin/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/filestash/vhost.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/filestash/vhost.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/gruntjscom/gruntjscom.service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/gruntjscom/gruntjscom.service.erb -------------------------------------------------------------------------------- /modules/profile/templates/gruntjscom/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/gruntjscom/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/miscweb/docs.jquery.com.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/miscweb/docs.jquery.com.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/miscweb/redirect.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/miscweb/redirect.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/miscweb/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/miscweb/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/notifier/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/notifier/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/agent/puppet.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/agent/puppet.conf.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/puppetdb/config/config.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/puppetdb/config/config.ini.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/puppetdb/config/database.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/puppetdb/config/database.ini.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/puppetdb/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/puppetdb/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/config/auth.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/config/auth.conf.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/config/puppetserver.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/config/puppetserver.conf.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/default.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/default.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/g10k.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/g10k.yaml.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/puppet.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/puppet.conf.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/puppetdb.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/puppetdb.conf.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/routes.yaml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/routes.yaml.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/web/known_hosts.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/web/known_hosts.erb -------------------------------------------------------------------------------- /modules/profile/templates/puppet/server/web/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/puppet/server/web/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/typesense/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/typesense/site.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/wordpress/base/default-tls.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/wordpress/base/default-tls.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/wordpress/blogs/jquery-config.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/wordpress/blogs/jquery-config.php.erb -------------------------------------------------------------------------------- /modules/profile/templates/wordpress/docs/jquery-config.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/wordpress/docs/jquery-config.php.erb -------------------------------------------------------------------------------- /modules/profile/templates/wordpress/docs/proxies.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/wordpress/docs/proxies.nginx.erb -------------------------------------------------------------------------------- /modules/profile/templates/wordpress/docs/redirects.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/templates/wordpress/docs/redirects.nginx.erb -------------------------------------------------------------------------------- /modules/profile/types/certbot/certificate.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/certbot/certificate.pp -------------------------------------------------------------------------------- /modules/profile/types/contentorigin/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/contentorigin/site.pp -------------------------------------------------------------------------------- /modules/profile/types/docs/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/docs/proxy.pp -------------------------------------------------------------------------------- /modules/profile/types/docs/redirect.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/docs/redirect.pp -------------------------------------------------------------------------------- /modules/profile/types/docs/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/docs/site.pp -------------------------------------------------------------------------------- /modules/profile/types/docs/sites.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/docs/sites.pp -------------------------------------------------------------------------------- /modules/profile/types/miscweb/redirect.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/miscweb/redirect.pp -------------------------------------------------------------------------------- /modules/profile/types/miscweb/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/miscweb/site.pp -------------------------------------------------------------------------------- /modules/profile/types/wordpress/blogs/sites.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/profile/types/wordpress/blogs/sites.pp -------------------------------------------------------------------------------- /modules/role/lib/puppet/functions/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/lib/puppet/functions/role.rb -------------------------------------------------------------------------------- /modules/role/manifests/blogs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/blogs.pp -------------------------------------------------------------------------------- /modules/role/manifests/codeorigin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/codeorigin.pp -------------------------------------------------------------------------------- /modules/role/manifests/contentorigin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/contentorigin.pp -------------------------------------------------------------------------------- /modules/role/manifests/docs/builder.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/docs/builder.pp -------------------------------------------------------------------------------- /modules/role/manifests/docs/filestash.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/docs/filestash.pp -------------------------------------------------------------------------------- /modules/role/manifests/docs/wordpress.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/docs/wordpress.pp -------------------------------------------------------------------------------- /modules/role/manifests/gruntjscom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/gruntjscom.pp -------------------------------------------------------------------------------- /modules/role/manifests/miscweb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/miscweb.pp -------------------------------------------------------------------------------- /modules/role/manifests/puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/puppet.pp -------------------------------------------------------------------------------- /modules/role/manifests/search.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/role/manifests/search.pp -------------------------------------------------------------------------------- /modules/ssh/functions/client/from_restriction.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/functions/client/from_restriction.pp -------------------------------------------------------------------------------- /modules/ssh/lib/facter/ssh_ca_host_certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/lib/facter/ssh_ca_host_certificate.rb -------------------------------------------------------------------------------- /modules/ssh/lib/facter/ssh_local_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/lib/facter/ssh_local_key.rb -------------------------------------------------------------------------------- /modules/ssh/lib/puppet/functions/ssh/ssh_sign_host_certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/lib/puppet/functions/ssh/ssh_sign_host_certificate.rb -------------------------------------------------------------------------------- /modules/ssh/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/manifests/client.pp -------------------------------------------------------------------------------- /modules/ssh/manifests/client/user_key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/manifests/client/user_key.pp -------------------------------------------------------------------------------- /modules/ssh/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/manifests/server.pp -------------------------------------------------------------------------------- /modules/ssh/manifests/server/ca_signed_hostkey.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/manifests/server/ca_signed_hostkey.pp -------------------------------------------------------------------------------- /modules/ssh/manifests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/manifests/server/config.pp -------------------------------------------------------------------------------- /modules/ssh/templates/server/sshd_config.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/templates/server/sshd_config.erb -------------------------------------------------------------------------------- /modules/ssh/types/keytype.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/ssh/types/keytype.pp -------------------------------------------------------------------------------- /modules/sudo/files/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/sudo/files/sudoers -------------------------------------------------------------------------------- /modules/sudo/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/sudo/manifests/init.pp -------------------------------------------------------------------------------- /modules/sudo/manifests/rule.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/sudo/manifests/rule.pp -------------------------------------------------------------------------------- /modules/sudo/templates/rule.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/sudo/templates/rule.erb -------------------------------------------------------------------------------- /modules/systemd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/manifests/init.pp -------------------------------------------------------------------------------- /modules/systemd/manifests/override.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/manifests/override.pp -------------------------------------------------------------------------------- /modules/systemd/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/manifests/service.pp -------------------------------------------------------------------------------- /modules/systemd/manifests/sysuser.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/manifests/sysuser.pp -------------------------------------------------------------------------------- /modules/systemd/manifests/timer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/manifests/timer.pp -------------------------------------------------------------------------------- /modules/systemd/manifests/tmpfile.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/manifests/tmpfile.pp -------------------------------------------------------------------------------- /modules/systemd/manifests/unit.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/manifests/unit.pp -------------------------------------------------------------------------------- /modules/systemd/templates/timer/service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/templates/timer/service.erb -------------------------------------------------------------------------------- /modules/systemd/templates/timer/timer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/systemd/templates/timer/timer.erb -------------------------------------------------------------------------------- /modules/tarsnap/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/files/README -------------------------------------------------------------------------------- /modules/tarsnap/files/backup/jq-tarsnap-take-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/files/backup/jq-tarsnap-take-backup.sh -------------------------------------------------------------------------------- /modules/tarsnap/files/backup/tarsnap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/files/backup/tarsnap.conf -------------------------------------------------------------------------------- /modules/tarsnap/files/keymgmt/jq-tarsnap-keygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/files/keymgmt/jq-tarsnap-keygen.sh -------------------------------------------------------------------------------- /modules/tarsnap/files/mariadb/jq-tarsnap-dump-mariadb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/files/mariadb/jq-tarsnap-dump-mariadb.sh -------------------------------------------------------------------------------- /modules/tarsnap/files/tarsnap-archive-keyring.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/files/tarsnap-archive-keyring.asc -------------------------------------------------------------------------------- /modules/tarsnap/manifests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/manifests/backup.pp -------------------------------------------------------------------------------- /modules/tarsnap/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/manifests/init.pp -------------------------------------------------------------------------------- /modules/tarsnap/manifests/keymgmt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/manifests/keymgmt.pp -------------------------------------------------------------------------------- /modules/tarsnap/manifests/mariadb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/manifests/mariadb.pp -------------------------------------------------------------------------------- /modules/tarsnap/templates/keymgmt/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/tarsnap/templates/keymgmt/config.sh -------------------------------------------------------------------------------- /modules/typesense/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/typesense/manifests/init.pp -------------------------------------------------------------------------------- /modules/typesense/templates/server.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/typesense/templates/server.ini.erb -------------------------------------------------------------------------------- /modules/users/files/config/adduser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/files/config/adduser.conf -------------------------------------------------------------------------------- /modules/users/files/config/sysusers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/files/config/sysusers.conf -------------------------------------------------------------------------------- /modules/users/files/home/skel/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/users/files/home/taavi/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/files/home/taavi/.bash_profile -------------------------------------------------------------------------------- /modules/users/files/home/taavi/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/files/home/taavi/.bashrc -------------------------------------------------------------------------------- /modules/users/files/home/taavi/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/files/home/taavi/.gitconfig -------------------------------------------------------------------------------- /modules/users/files/home/taavi/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/files/home/taavi/.tmux.conf -------------------------------------------------------------------------------- /modules/users/manifests/account.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/manifests/account.pp -------------------------------------------------------------------------------- /modules/users/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/manifests/config.pp -------------------------------------------------------------------------------- /modules/users/manifests/group.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/manifests/group.pp -------------------------------------------------------------------------------- /modules/users/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/manifests/init.pp -------------------------------------------------------------------------------- /modules/users/types/ssh_key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/users/types/ssh_key.pp -------------------------------------------------------------------------------- /modules/wordpress/manifests/cli.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/manifests/cli.pp -------------------------------------------------------------------------------- /modules/wordpress/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/manifests/site.pp -------------------------------------------------------------------------------- /modules/wordpress/templates/site/jquery-config-base.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/templates/site/jquery-config-base.php.erb -------------------------------------------------------------------------------- /modules/wordpress/templates/site/site.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/templates/site/site.nginx.erb -------------------------------------------------------------------------------- /modules/wordpress/templates/site/subsite.nginx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/templates/site/subsite.nginx.erb -------------------------------------------------------------------------------- /modules/wordpress/types/path.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/types/path.pp -------------------------------------------------------------------------------- /modules/wordpress/types/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/types/plugin.pp -------------------------------------------------------------------------------- /modules/wordpress/types/sidebar.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/types/sidebar.pp -------------------------------------------------------------------------------- /modules/wordpress/types/theme.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/types/theme.pp -------------------------------------------------------------------------------- /modules/wordpress/types/user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/modules/wordpress/types/user.pp -------------------------------------------------------------------------------- /test/CodeoriginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test/CodeoriginTest.php -------------------------------------------------------------------------------- /test/ContentoriginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test/ContentoriginTest.php -------------------------------------------------------------------------------- /test/MiscwebTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test/MiscwebTest.php -------------------------------------------------------------------------------- /test/ReleasesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test/ReleasesTest.php -------------------------------------------------------------------------------- /test/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test/Unit.php -------------------------------------------------------------------------------- /test/WpdocsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test/WpdocsTest.php -------------------------------------------------------------------------------- /test_data/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -euo pipefail 3 | 4 | g10k -puppetfile 5 | -------------------------------------------------------------------------------- /test_data/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test_data/hiera.yaml -------------------------------------------------------------------------------- /test_data/private/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test_data/private/README -------------------------------------------------------------------------------- /test_data/private/files/ssh_ca/ca: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/ssh_ca/ca.pub: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/tarsnap-keys/contentorigin-02.ops.jquery.net.key: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/tarsnap-keys/filestash-01.ops.jquery.net.key: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/tarsnap-keys/puppet-03.ops.jquery.net.key: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/tarsnap-keys/puppet-04.ops.jquery.net.key: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/tarsnap-keys/wp-04.ops.jquery.net.key: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/tarsnap-keys/wp-05.ops.jquery.net.key: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/files/tarsnap-keys/wpblogs-01.ops.jquery.net.key: -------------------------------------------------------------------------------- 1 | fake 2 | -------------------------------------------------------------------------------- /test_data/private/hieradata/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jquery/infrastructure-puppet/HEAD/test_data/private/hieradata/common.yaml --------------------------------------------------------------------------------