├── .berkshelf-test-config.js ├── .chef ├── bootstrap │ └── psf-osu.erb ├── fake-client.pem └── knife.rb ├── .gitignore ├── .rbenv-gemsets ├── .rbenv-version ├── Berksfile ├── Gemfile ├── Makefile ├── README.md ├── Rakefile ├── certificates └── README.md ├── chefignore ├── config └── rake.rb ├── cookbooks ├── buildmaster.txt ├── cron │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.json │ ├── metadata.rb │ ├── providers │ │ └── d.rb │ ├── recipes │ │ ├── default.rb │ │ └── test.rb │ ├── resources │ │ └── d.rb │ └── templates │ │ └── default │ │ └── cron.d.erb ├── haproxy │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── files │ │ └── ubuntu-12.04 │ │ │ └── haproxy_1.5-dev22-r1_amd64.deb │ ├── metadata.rb │ ├── providers │ │ ├── default.rb │ │ └── section.rb │ ├── recipes │ │ └── default.rb │ ├── resources │ │ ├── default.rb │ │ └── section.rb │ └── templates │ │ └── default │ │ ├── global.cfg.erb │ │ └── init.erb ├── pgbouncer │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── chefignore │ ├── metadata.rb │ ├── providers │ │ ├── database.rb │ │ ├── default.rb │ │ └── user.rb │ ├── recipes │ │ └── default.rb │ ├── resources │ │ ├── database.rb │ │ ├── default.rb │ │ └── user.rb │ └── templates │ │ └── default │ │ ├── pgbouncer.ini.erb │ │ ├── upstart.conf.erb │ │ └── users.erb ├── psf-advocacy │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── README.md │ ├── chefignore │ ├── metadata.rb │ └── recipes │ │ └── default.rb ├── psf-debbuild │ ├── files │ │ └── default │ │ │ ├── dh-virtualenv_0.6_all.deb │ │ │ └── python-virtualenv_1.10.1-1_all.deb │ ├── metadata.rb │ └── recipes │ │ ├── default.rb │ │ └── warehouse.rb ├── psf-evote │ ├── Berksfile │ ├── README.md │ ├── Vagrantfile │ ├── attributes │ │ └── default.rb │ ├── metadata.rb │ ├── recipes │ │ └── default.rb │ └── templates │ │ └── default │ │ └── 0.py.erb ├── psf-loadbalancer │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── README.md │ ├── chefignore │ ├── metadata.rb │ ├── recipes │ │ ├── haproxy.rb │ │ ├── heartbeat.rb │ │ └── stud.rb │ └── templates │ │ └── default │ │ └── haproxy.cfg.erb ├── psf-misc │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── README.md │ ├── chefignore │ ├── files │ │ └── default │ │ │ └── fix-deny-hosts │ ├── metadata.rb │ ├── recipes │ │ ├── ack.rb │ │ ├── backup.rb │ │ ├── ntp.rb │ │ ├── ops-scripts.rb │ │ ├── sudo.rb │ │ └── sysstat.rb │ └── templates │ │ └── default │ │ └── sudo_env_keep.erb ├── psf-moin │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── chefignore │ ├── metadata.rb │ ├── recipes │ │ └── default.rb │ └── templates │ │ └── default │ │ ├── moin.wsgi.erb │ │ └── wiki.python.org.conf.erb ├── psf-monitoring │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── files │ │ └── default │ │ │ └── riemann-dash │ │ │ └── config.rb │ ├── metadata.rb │ ├── recipes │ │ ├── client.rb │ │ └── server.rb │ └── templates │ │ └── default │ │ ├── graphite-vhost.conf.erb │ │ ├── riemann.config.erb │ │ └── storage-schemas.conf.erb ├── psf-postgresql │ ├── files │ │ └── default │ │ │ └── pgdg.pref │ ├── metadata.rb │ └── recipes │ │ └── 92.rb ├── psf-pycon │ ├── Berksfile │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── metadata.rb │ ├── recipes │ │ ├── app.rb │ │ ├── apt_pgdg_postgresql.rb │ │ └── local_db.rb │ ├── templates │ │ └── default │ │ │ ├── environment.erb │ │ │ ├── local_settings.py.erb │ │ │ └── nginx.conf.erb │ └── test │ │ └── data_bags │ │ └── secrets │ │ ├── postgres.json │ │ └── pycon.json ├── psf-pypi │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── files │ │ └── default │ │ │ └── psf.gpg │ ├── metadata.rb │ ├── recipes │ │ ├── default.rb │ │ ├── logging.rb │ │ ├── pgbouncer.rb │ │ ├── pypi.rb │ │ └── warehouse.rb │ └── templates │ │ └── default │ │ ├── 25-pypi-logging.conf.erb │ │ ├── nginx-warehouse.conf.erb │ │ ├── nginx_pypi.conf.erb │ │ ├── nginx_redirect.conf.erb │ │ ├── nginx_static.conf.erb │ │ └── warehouse.upstart.conf.erb ├── psf-rsnapshot │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── chefignore │ ├── metadata.rb │ └── recipes │ │ └── postgres.rb ├── psf-search │ ├── metadata.rb │ ├── recipes │ │ └── default.rb │ └── templates │ │ └── default │ │ └── elasticsearch.conf.erb ├── pypy-codespeed │ ├── README.md │ └── chefignore ├── pypy-home │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── README.md │ ├── chefignore │ ├── metadata.rb │ ├── recipes │ │ └── default.rb │ └── templates │ │ └── default │ │ └── nginx.conf.erb ├── rsnapshot │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── files │ │ └── default │ │ │ └── rsync.py │ ├── metadata.rb │ ├── providers │ │ ├── backup.rb │ │ ├── client.rb │ │ ├── script.rb │ │ └── server.rb │ ├── recipes │ │ ├── backupall.rb │ │ ├── client.rb │ │ ├── default.rb │ │ └── server.rb │ ├── resources │ │ ├── backup.rb │ │ ├── client.rb │ │ ├── retain.rb │ │ ├── script.rb │ │ └── server.rb │ └── templates │ │ └── default │ │ ├── rsnapshot.conf.erb │ │ └── sudoers.erb ├── stud │ ├── .gitignore │ ├── Berksfile │ ├── Gemfile │ ├── README.md │ ├── files │ │ └── ubuntu-12.04 │ │ │ ├── stud_0.3-1-19a7f1_amd64.deb │ │ │ └── stud_0.3-2-ef1745_amd64.deb │ ├── metadata.rb │ ├── providers │ │ └── default.rb │ ├── resources │ │ └── default.rb │ └── templates │ │ └── default │ │ ├── stud.conf.erb │ │ └── upstart.conf.erb ├── user │ ├── .gitignore │ ├── .travis.yml │ ├── Berksfile │ ├── CHANGELOG.md │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── attributes │ │ └── default.rb │ ├── chefignore │ ├── metadata.rb │ ├── providers │ │ └── account.rb │ ├── recipes │ │ ├── data_bag.rb │ │ └── default.rb │ ├── resources │ │ └── account.rb │ ├── templates │ │ └── default │ │ │ └── authorized_keys.erb │ └── test │ │ ├── attributes │ │ └── default_spec.rb │ │ ├── providers │ │ └── account_spec.rb │ │ ├── resources │ │ └── account_spec.rb │ │ ├── spec_helper.rb │ │ └── support │ │ └── Gemfile └── wiki.txt ├── data_bags ├── README.md └── users │ ├── alex_gaynor.json │ ├── antoine.json │ ├── arigo.json │ ├── benjamin.json │ ├── benjaminws.json │ ├── bitdancer.json │ ├── blaflamme.json │ ├── coderanger.json │ ├── copelco.json │ ├── csmith.json │ ├── daaray.json │ ├── dchukhin.json │ ├── dpoirier.json │ ├── dstufft.json │ ├── eliben.json │ ├── eric.json │ ├── ernestd.json │ ├── fijal.json │ ├── frank.json │ ├── fwierzbicki.json │ ├── gbrandl.json │ ├── haypo.json │ ├── heimes.json │ ├── jacob.json │ ├── jafo.json │ ├── jburch.json │ ├── jeff.json │ ├── jezdez.json │ ├── jnoller.json │ ├── julia.json │ ├── lemburg.json │ ├── loewis.json │ ├── lovewell.json │ ├── lukesneeringer.json │ ├── lvh.json │ ├── mattip.json │ ├── melotti.json │ ├── mmangoba.json │ ├── ncnwoko.json │ ├── osuadmin.json │ ├── pablogsal.json │ ├── rbauer.json │ ├── richard.json │ ├── sheep.json │ ├── trent.json │ ├── trevorray.json │ ├── twaldmann.json │ ├── vkurup.json │ └── zware.json ├── doc ├── .gitignore ├── Makefile ├── conf.py ├── generating-these-docs.rst ├── getting-started.rst ├── index.rst ├── make.bat ├── nodes.rst ├── roles.rst └── services │ ├── index.rst │ └── warehouse.rst ├── environments └── README.md ├── hostnames └── roles ├── README.md ├── advocacy.rb ├── base.rb ├── buildmaster.rb ├── coverity.rb ├── debbuild.rb ├── elasticsearch.rb ├── evote.rb ├── future-docs.rb ├── loadbalancer.rb ├── monitoring.rb ├── postfix-relay.rb ├── psf-pycon-staging.rb ├── psf-pycon.rb ├── pypi.rb ├── pypy-codespeed.rb ├── pypy-home.rb ├── pyramid-community.rb ├── python-speed.rb ├── redesign-staging.rb ├── rpi.rb ├── rsnapshot.rb └── wiki.rb /.berkshelf-test-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/.berkshelf-test-config.js -------------------------------------------------------------------------------- /.chef/bootstrap/psf-osu.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/.chef/bootstrap/psf-osu.erb -------------------------------------------------------------------------------- /.chef/fake-client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/.chef/fake-client.pem -------------------------------------------------------------------------------- /.chef/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/.chef/knife.rb -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/.gitignore -------------------------------------------------------------------------------- /.rbenv-gemsets: -------------------------------------------------------------------------------- 1 | psf-chef 2 | -------------------------------------------------------------------------------- /.rbenv-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p392 2 | -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/Berksfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/Gemfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/Rakefile -------------------------------------------------------------------------------- /certificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/certificates/README.md -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/chefignore -------------------------------------------------------------------------------- /config/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/config/rake.rb -------------------------------------------------------------------------------- /cookbooks/buildmaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/buildmaster.txt -------------------------------------------------------------------------------- /cookbooks/cron/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/README.md -------------------------------------------------------------------------------- /cookbooks/cron/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/metadata.json -------------------------------------------------------------------------------- /cookbooks/cron/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/metadata.rb -------------------------------------------------------------------------------- /cookbooks/cron/providers/d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/providers/d.rb -------------------------------------------------------------------------------- /cookbooks/cron/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/cron/recipes/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/recipes/test.rb -------------------------------------------------------------------------------- /cookbooks/cron/resources/d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/resources/d.rb -------------------------------------------------------------------------------- /cookbooks/cron/templates/default/cron.d.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/cron/templates/default/cron.d.erb -------------------------------------------------------------------------------- /cookbooks/haproxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/.gitignore -------------------------------------------------------------------------------- /cookbooks/haproxy/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/haproxy/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/README.md -------------------------------------------------------------------------------- /cookbooks/haproxy/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/haproxy/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/chefignore -------------------------------------------------------------------------------- /cookbooks/haproxy/files/ubuntu-12.04/haproxy_1.5-dev22-r1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/files/ubuntu-12.04/haproxy_1.5-dev22-r1_amd64.deb -------------------------------------------------------------------------------- /cookbooks/haproxy/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/metadata.rb -------------------------------------------------------------------------------- /cookbooks/haproxy/providers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/providers/default.rb -------------------------------------------------------------------------------- /cookbooks/haproxy/providers/section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/providers/section.rb -------------------------------------------------------------------------------- /cookbooks/haproxy/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/haproxy/resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/resources/default.rb -------------------------------------------------------------------------------- /cookbooks/haproxy/resources/section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/resources/section.rb -------------------------------------------------------------------------------- /cookbooks/haproxy/templates/default/global.cfg.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/templates/default/global.cfg.erb -------------------------------------------------------------------------------- /cookbooks/haproxy/templates/default/init.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/haproxy/templates/default/init.erb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/.gitignore -------------------------------------------------------------------------------- /cookbooks/pgbouncer/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/pgbouncer/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/pgbouncer/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/chefignore -------------------------------------------------------------------------------- /cookbooks/pgbouncer/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/metadata.rb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/providers/database.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/pgbouncer/providers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/providers/default.rb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/providers/user.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/pgbouncer/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/resources/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/resources/database.rb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/resources/default.rb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/resources/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/resources/user.rb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/templates/default/pgbouncer.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/templates/default/pgbouncer.ini.erb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/templates/default/upstart.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/templates/default/upstart.conf.erb -------------------------------------------------------------------------------- /cookbooks/pgbouncer/templates/default/users.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pgbouncer/templates/default/users.erb -------------------------------------------------------------------------------- /cookbooks/psf-advocacy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-advocacy/.gitignore -------------------------------------------------------------------------------- /cookbooks/psf-advocacy/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/psf-advocacy/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/psf-advocacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-advocacy/README.md -------------------------------------------------------------------------------- /cookbooks/psf-advocacy/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-advocacy/chefignore -------------------------------------------------------------------------------- /cookbooks/psf-advocacy/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-advocacy/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-advocacy/recipes/default.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/psf-debbuild/files/default/dh-virtualenv_0.6_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-debbuild/files/default/dh-virtualenv_0.6_all.deb -------------------------------------------------------------------------------- /cookbooks/psf-debbuild/files/default/python-virtualenv_1.10.1-1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-debbuild/files/default/python-virtualenv_1.10.1-1_all.deb -------------------------------------------------------------------------------- /cookbooks/psf-debbuild/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-debbuild/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-debbuild/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-debbuild/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-debbuild/recipes/warehouse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-debbuild/recipes/warehouse.rb -------------------------------------------------------------------------------- /cookbooks/psf-evote/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | cookbook 'apt' 5 | -------------------------------------------------------------------------------- /cookbooks/psf-evote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-evote/README.md -------------------------------------------------------------------------------- /cookbooks/psf-evote/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-evote/Vagrantfile -------------------------------------------------------------------------------- /cookbooks/psf-evote/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-evote/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-evote/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-evote/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-evote/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-evote/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-evote/templates/default/0.py.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-evote/templates/default/0.py.erb -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-loadbalancer/.gitignore -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-loadbalancer/chefignore -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-loadbalancer/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/recipes/haproxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-loadbalancer/recipes/haproxy.rb -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/recipes/heartbeat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-loadbalancer/recipes/heartbeat.rb -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/recipes/stud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-loadbalancer/recipes/stud.rb -------------------------------------------------------------------------------- /cookbooks/psf-loadbalancer/templates/default/haproxy.cfg.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-loadbalancer/templates/default/haproxy.cfg.erb -------------------------------------------------------------------------------- /cookbooks/psf-misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/.gitignore -------------------------------------------------------------------------------- /cookbooks/psf-misc/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/psf-misc/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/psf-misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/README.md -------------------------------------------------------------------------------- /cookbooks/psf-misc/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/chefignore -------------------------------------------------------------------------------- /cookbooks/psf-misc/files/default/fix-deny-hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/files/default/fix-deny-hosts -------------------------------------------------------------------------------- /cookbooks/psf-misc/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-misc/recipes/ack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/recipes/ack.rb -------------------------------------------------------------------------------- /cookbooks/psf-misc/recipes/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/recipes/backup.rb -------------------------------------------------------------------------------- /cookbooks/psf-misc/recipes/ntp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/recipes/ntp.rb -------------------------------------------------------------------------------- /cookbooks/psf-misc/recipes/ops-scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/recipes/ops-scripts.rb -------------------------------------------------------------------------------- /cookbooks/psf-misc/recipes/sudo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-misc/recipes/sudo.rb -------------------------------------------------------------------------------- /cookbooks/psf-misc/recipes/sysstat.rb: -------------------------------------------------------------------------------- 1 | package 'sysstat' do 2 | action :upgrade 3 | end 4 | -------------------------------------------------------------------------------- /cookbooks/psf-misc/templates/default/sudo_env_keep.erb: -------------------------------------------------------------------------------- 1 | Defaults env_keep="SSH_AUTH_SOCK" 2 | -------------------------------------------------------------------------------- /cookbooks/psf-moin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-moin/.gitignore -------------------------------------------------------------------------------- /cookbooks/psf-moin/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/psf-moin/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/psf-moin/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-moin/chefignore -------------------------------------------------------------------------------- /cookbooks/psf-moin/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-moin/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-moin/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-moin/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-moin/templates/default/moin.wsgi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-moin/templates/default/moin.wsgi.erb -------------------------------------------------------------------------------- /cookbooks/psf-moin/templates/default/wiki.python.org.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-moin/templates/default/wiki.python.org.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/.gitignore -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/Berksfile -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/README.md: -------------------------------------------------------------------------------- 1 | psf-monitoring cookbook 2 | -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/chefignore -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/files/default/riemann-dash/config.rb: -------------------------------------------------------------------------------- 1 | set :port, 6000 2 | -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/recipes/client.rb -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/templates/default/graphite-vhost.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/templates/default/graphite-vhost.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/templates/default/riemann.config.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/templates/default/riemann.config.erb -------------------------------------------------------------------------------- /cookbooks/psf-monitoring/templates/default/storage-schemas.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-monitoring/templates/default/storage-schemas.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-postgresql/files/default/pgdg.pref: -------------------------------------------------------------------------------- 1 | Package: * 2 | Pin: release o=apt.postgresql.org 3 | Pin-Priority: 200 4 | -------------------------------------------------------------------------------- /cookbooks/psf-postgresql/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'psf-postgresql' 2 | version '0.0.2' 3 | 4 | depends 'apt' 5 | -------------------------------------------------------------------------------- /cookbooks/psf-postgresql/recipes/92.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-postgresql/recipes/92.rb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/Berksfile -------------------------------------------------------------------------------- /cookbooks/psf-pycon/README.md: -------------------------------------------------------------------------------- 1 | Configuration for pycon website 2 | -------------------------------------------------------------------------------- /cookbooks/psf-pycon/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/recipes/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/recipes/app.rb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/recipes/apt_pgdg_postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/recipes/apt_pgdg_postgresql.rb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/recipes/local_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/recipes/local_db.rb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/templates/default/environment.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/templates/default/environment.erb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/templates/default/local_settings.py.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/templates/default/local_settings.py.erb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/templates/default/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/templates/default/nginx.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-pycon/test/data_bags/secrets/postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/test/data_bags/secrets/postgres.json -------------------------------------------------------------------------------- /cookbooks/psf-pycon/test/data_bags/secrets/pycon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pycon/test/data_bags/secrets/pycon.json -------------------------------------------------------------------------------- /cookbooks/psf-pypi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/.gitignore -------------------------------------------------------------------------------- /cookbooks/psf-pypi/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/psf-pypi/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/psf-pypi/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/chefignore -------------------------------------------------------------------------------- /cookbooks/psf-pypi/files/default/psf.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/files/default/psf.gpg -------------------------------------------------------------------------------- /cookbooks/psf-pypi/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/recipes/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/recipes/logging.rb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/recipes/pgbouncer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/recipes/pgbouncer.rb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/recipes/pypi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/recipes/pypi.rb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/recipes/warehouse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/recipes/warehouse.rb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/templates/default/25-pypi-logging.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/templates/default/25-pypi-logging.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/templates/default/nginx-warehouse.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/templates/default/nginx-warehouse.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/templates/default/nginx_pypi.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/templates/default/nginx_pypi.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/templates/default/nginx_redirect.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/templates/default/nginx_redirect.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/templates/default/nginx_static.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/templates/default/nginx_static.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-pypi/templates/default/warehouse.upstart.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-pypi/templates/default/warehouse.upstart.conf.erb -------------------------------------------------------------------------------- /cookbooks/psf-rsnapshot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-rsnapshot/.gitignore -------------------------------------------------------------------------------- /cookbooks/psf-rsnapshot/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/psf-rsnapshot/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/psf-rsnapshot/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-rsnapshot/chefignore -------------------------------------------------------------------------------- /cookbooks/psf-rsnapshot/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-rsnapshot/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-rsnapshot/recipes/postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-rsnapshot/recipes/postgres.rb -------------------------------------------------------------------------------- /cookbooks/psf-search/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-search/metadata.rb -------------------------------------------------------------------------------- /cookbooks/psf-search/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-search/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/psf-search/templates/default/elasticsearch.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/psf-search/templates/default/elasticsearch.conf.erb -------------------------------------------------------------------------------- /cookbooks/pypy-codespeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pypy-codespeed/README.md -------------------------------------------------------------------------------- /cookbooks/pypy-codespeed/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pypy-codespeed/chefignore -------------------------------------------------------------------------------- /cookbooks/pypy-home/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pypy-home/.gitignore -------------------------------------------------------------------------------- /cookbooks/pypy-home/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/pypy-home/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/pypy-home/README.md: -------------------------------------------------------------------------------- 1 | Configuration for pypy.org 2 | -------------------------------------------------------------------------------- /cookbooks/pypy-home/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pypy-home/chefignore -------------------------------------------------------------------------------- /cookbooks/pypy-home/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pypy-home/metadata.rb -------------------------------------------------------------------------------- /cookbooks/pypy-home/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pypy-home/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/pypy-home/templates/default/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/pypy-home/templates/default/nginx.conf.erb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/.gitignore -------------------------------------------------------------------------------- /cookbooks/rsnapshot/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/rsnapshot/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/rsnapshot/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/chefignore -------------------------------------------------------------------------------- /cookbooks/rsnapshot/files/default/rsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/files/default/rsync.py -------------------------------------------------------------------------------- /cookbooks/rsnapshot/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/metadata.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/providers/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/providers/backup.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/providers/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/providers/client.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/providers/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/providers/script.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/providers/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/providers/server.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/recipes/backupall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/recipes/backupall.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/recipes/client.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/recipes/default.rb: -------------------------------------------------------------------------------- 1 | include_recipe 'rsnapshot::client' 2 | -------------------------------------------------------------------------------- /cookbooks/rsnapshot/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/resources/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/resources/backup.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/resources/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/resources/client.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/resources/retain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/resources/retain.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/resources/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/resources/script.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/resources/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/resources/server.rb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/templates/default/rsnapshot.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/templates/default/rsnapshot.conf.erb -------------------------------------------------------------------------------- /cookbooks/rsnapshot/templates/default/sudoers.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/rsnapshot/templates/default/sudoers.erb -------------------------------------------------------------------------------- /cookbooks/stud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/.gitignore -------------------------------------------------------------------------------- /cookbooks/stud/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | -------------------------------------------------------------------------------- /cookbooks/stud/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/stud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/README.md -------------------------------------------------------------------------------- /cookbooks/stud/files/ubuntu-12.04/stud_0.3-1-19a7f1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/files/ubuntu-12.04/stud_0.3-1-19a7f1_amd64.deb -------------------------------------------------------------------------------- /cookbooks/stud/files/ubuntu-12.04/stud_0.3-2-ef1745_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/files/ubuntu-12.04/stud_0.3-2-ef1745_amd64.deb -------------------------------------------------------------------------------- /cookbooks/stud/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/metadata.rb -------------------------------------------------------------------------------- /cookbooks/stud/providers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/providers/default.rb -------------------------------------------------------------------------------- /cookbooks/stud/resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/resources/default.rb -------------------------------------------------------------------------------- /cookbooks/stud/templates/default/stud.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/templates/default/stud.conf.erb -------------------------------------------------------------------------------- /cookbooks/stud/templates/default/upstart.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/stud/templates/default/upstart.conf.erb -------------------------------------------------------------------------------- /cookbooks/user/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/.gitignore -------------------------------------------------------------------------------- /cookbooks/user/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/.travis.yml -------------------------------------------------------------------------------- /cookbooks/user/Berksfile: -------------------------------------------------------------------------------- 1 | site :opscode 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /cookbooks/user/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/user/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /cookbooks/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/README.md -------------------------------------------------------------------------------- /cookbooks/user/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/Rakefile -------------------------------------------------------------------------------- /cookbooks/user/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/user/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/chefignore -------------------------------------------------------------------------------- /cookbooks/user/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/metadata.rb -------------------------------------------------------------------------------- /cookbooks/user/providers/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/providers/account.rb -------------------------------------------------------------------------------- /cookbooks/user/recipes/data_bag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/recipes/data_bag.rb -------------------------------------------------------------------------------- /cookbooks/user/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/user/resources/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/resources/account.rb -------------------------------------------------------------------------------- /cookbooks/user/templates/default/authorized_keys.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/templates/default/authorized_keys.erb -------------------------------------------------------------------------------- /cookbooks/user/test/attributes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/test/attributes/default_spec.rb -------------------------------------------------------------------------------- /cookbooks/user/test/providers/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/test/providers/account_spec.rb -------------------------------------------------------------------------------- /cookbooks/user/test/resources/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/test/resources/account_spec.rb -------------------------------------------------------------------------------- /cookbooks/user/test/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/test/spec_helper.rb -------------------------------------------------------------------------------- /cookbooks/user/test/support/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/user/test/support/Gemfile -------------------------------------------------------------------------------- /cookbooks/wiki.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/cookbooks/wiki.txt -------------------------------------------------------------------------------- /data_bags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/README.md -------------------------------------------------------------------------------- /data_bags/users/alex_gaynor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/alex_gaynor.json -------------------------------------------------------------------------------- /data_bags/users/antoine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/antoine.json -------------------------------------------------------------------------------- /data_bags/users/arigo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/arigo.json -------------------------------------------------------------------------------- /data_bags/users/benjamin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/benjamin.json -------------------------------------------------------------------------------- /data_bags/users/benjaminws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/benjaminws.json -------------------------------------------------------------------------------- /data_bags/users/bitdancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/bitdancer.json -------------------------------------------------------------------------------- /data_bags/users/blaflamme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/blaflamme.json -------------------------------------------------------------------------------- /data_bags/users/coderanger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/coderanger.json -------------------------------------------------------------------------------- /data_bags/users/copelco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/copelco.json -------------------------------------------------------------------------------- /data_bags/users/csmith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/csmith.json -------------------------------------------------------------------------------- /data_bags/users/daaray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/daaray.json -------------------------------------------------------------------------------- /data_bags/users/dchukhin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/dchukhin.json -------------------------------------------------------------------------------- /data_bags/users/dpoirier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/dpoirier.json -------------------------------------------------------------------------------- /data_bags/users/dstufft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/dstufft.json -------------------------------------------------------------------------------- /data_bags/users/eliben.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/eliben.json -------------------------------------------------------------------------------- /data_bags/users/eric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/eric.json -------------------------------------------------------------------------------- /data_bags/users/ernestd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/ernestd.json -------------------------------------------------------------------------------- /data_bags/users/fijal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/fijal.json -------------------------------------------------------------------------------- /data_bags/users/frank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/frank.json -------------------------------------------------------------------------------- /data_bags/users/fwierzbicki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/fwierzbicki.json -------------------------------------------------------------------------------- /data_bags/users/gbrandl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/gbrandl.json -------------------------------------------------------------------------------- /data_bags/users/haypo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/haypo.json -------------------------------------------------------------------------------- /data_bags/users/heimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/heimes.json -------------------------------------------------------------------------------- /data_bags/users/jacob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/jacob.json -------------------------------------------------------------------------------- /data_bags/users/jafo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/jafo.json -------------------------------------------------------------------------------- /data_bags/users/jburch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/jburch.json -------------------------------------------------------------------------------- /data_bags/users/jeff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/jeff.json -------------------------------------------------------------------------------- /data_bags/users/jezdez.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/jezdez.json -------------------------------------------------------------------------------- /data_bags/users/jnoller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/jnoller.json -------------------------------------------------------------------------------- /data_bags/users/julia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/julia.json -------------------------------------------------------------------------------- /data_bags/users/lemburg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/lemburg.json -------------------------------------------------------------------------------- /data_bags/users/loewis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/loewis.json -------------------------------------------------------------------------------- /data_bags/users/lovewell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/lovewell.json -------------------------------------------------------------------------------- /data_bags/users/lukesneeringer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/lukesneeringer.json -------------------------------------------------------------------------------- /data_bags/users/lvh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/lvh.json -------------------------------------------------------------------------------- /data_bags/users/mattip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/mattip.json -------------------------------------------------------------------------------- /data_bags/users/melotti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/melotti.json -------------------------------------------------------------------------------- /data_bags/users/mmangoba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/mmangoba.json -------------------------------------------------------------------------------- /data_bags/users/ncnwoko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/ncnwoko.json -------------------------------------------------------------------------------- /data_bags/users/osuadmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/osuadmin.json -------------------------------------------------------------------------------- /data_bags/users/pablogsal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/pablogsal.json -------------------------------------------------------------------------------- /data_bags/users/rbauer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/rbauer.json -------------------------------------------------------------------------------- /data_bags/users/richard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/richard.json -------------------------------------------------------------------------------- /data_bags/users/sheep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/sheep.json -------------------------------------------------------------------------------- /data_bags/users/trent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/trent.json -------------------------------------------------------------------------------- /data_bags/users/trevorray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/trevorray.json -------------------------------------------------------------------------------- /data_bags/users/twaldmann.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/twaldmann.json -------------------------------------------------------------------------------- /data_bags/users/vkurup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/vkurup.json -------------------------------------------------------------------------------- /data_bags/users/zware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/data_bags/users/zware.json -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/generating-these-docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/generating-these-docs.rst -------------------------------------------------------------------------------- /doc/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/getting-started.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/nodes.rst -------------------------------------------------------------------------------- /doc/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/roles.rst -------------------------------------------------------------------------------- /doc/services/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/services/index.rst -------------------------------------------------------------------------------- /doc/services/warehouse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/doc/services/warehouse.rst -------------------------------------------------------------------------------- /environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/environments/README.md -------------------------------------------------------------------------------- /hostnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/hostnames -------------------------------------------------------------------------------- /roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/README.md -------------------------------------------------------------------------------- /roles/advocacy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/advocacy.rb -------------------------------------------------------------------------------- /roles/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/base.rb -------------------------------------------------------------------------------- /roles/buildmaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/buildmaster.rb -------------------------------------------------------------------------------- /roles/coverity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/coverity.rb -------------------------------------------------------------------------------- /roles/debbuild.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/debbuild.rb -------------------------------------------------------------------------------- /roles/elasticsearch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/elasticsearch.rb -------------------------------------------------------------------------------- /roles/evote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/evote.rb -------------------------------------------------------------------------------- /roles/future-docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/future-docs.rb -------------------------------------------------------------------------------- /roles/loadbalancer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/loadbalancer.rb -------------------------------------------------------------------------------- /roles/monitoring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/monitoring.rb -------------------------------------------------------------------------------- /roles/postfix-relay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/postfix-relay.rb -------------------------------------------------------------------------------- /roles/psf-pycon-staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/psf-pycon-staging.rb -------------------------------------------------------------------------------- /roles/psf-pycon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/psf-pycon.rb -------------------------------------------------------------------------------- /roles/pypi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/pypi.rb -------------------------------------------------------------------------------- /roles/pypy-codespeed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/pypy-codespeed.rb -------------------------------------------------------------------------------- /roles/pypy-home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/pypy-home.rb -------------------------------------------------------------------------------- /roles/pyramid-community.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/pyramid-community.rb -------------------------------------------------------------------------------- /roles/python-speed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/python-speed.rb -------------------------------------------------------------------------------- /roles/redesign-staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/redesign-staging.rb -------------------------------------------------------------------------------- /roles/rpi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/rpi.rb -------------------------------------------------------------------------------- /roles/rsnapshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/rsnapshot.rb -------------------------------------------------------------------------------- /roles/wiki.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/psf-chef/HEAD/roles/wiki.rb --------------------------------------------------------------------------------