├── Berksfile ├── README.md ├── Vagrantfile ├── cookbooks ├── apache │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── files │ │ └── default │ │ │ ├── index.html │ │ │ ├── index1.html │ │ │ └── index2.html │ ├── metadata.rb │ ├── providers │ │ └── .gitkeep │ ├── recipes │ │ ├── default.rb │ │ └── ip-logger.rb │ ├── resources │ │ └── .gitkeep │ └── templates │ │ └── default │ │ ├── custom.erb │ │ └── index.html.erb ├── chef-client │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── libraries │ │ └── helpers.rb │ ├── metadata.json │ ├── recipes │ │ ├── _unit_test_cloning_resource.rb │ │ ├── bluepill_service.rb │ │ ├── bsd_service.rb │ │ ├── config.rb │ │ ├── cron.rb │ │ ├── daemontools_service.rb │ │ ├── default.rb │ │ ├── delete_validation.rb │ │ ├── init_service.rb │ │ ├── launchd_service.rb │ │ ├── runit_service.rb │ │ ├── service.rb │ │ ├── smf_service.rb │ │ ├── src_service.rb │ │ ├── systemd_service.rb │ │ ├── task.rb │ │ ├── upstart_service.rb │ │ └── windows_service.rb │ └── templates │ │ ├── arch │ │ └── chef │ │ │ └── chef-client.erb │ │ ├── default │ │ ├── chef-client.pill.erb │ │ ├── client.rb.erb │ │ ├── com.chef.chef-client.plist.erb │ │ ├── debian │ │ │ ├── default │ │ │ │ └── chef-client.erb │ │ │ ├── init.d │ │ │ │ └── chef-client.erb │ │ │ └── init │ │ │ │ └── chef-client.conf.erb │ │ ├── fedora │ │ │ └── sysconfig │ │ │ │ └── chef-client.erb │ │ ├── redhat │ │ │ ├── init.d │ │ │ │ └── chef-client.erb │ │ │ └── sysconfig │ │ │ │ └── chef-client.erb │ │ ├── solaris │ │ │ ├── chef-client.erb │ │ │ └── manifest.xml.erb │ │ ├── suse │ │ │ ├── init.d │ │ │ │ └── chef-client.erb │ │ │ └── sysconfig │ │ │ │ └── chef-client.erb │ │ ├── sv-chef-client-log-run.erb │ │ ├── sv-chef-client-run.erb │ │ └── systemd │ │ │ └── chef-client.service.erb │ │ └── freebsd │ │ ├── chef-client.erb │ │ └── chef.erb ├── chef_handler │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── files │ │ └── default │ │ │ └── handlers │ │ │ └── README │ ├── libraries │ │ ├── helpers.rb │ │ └── matchers.rb │ ├── metadata.json │ ├── providers │ │ └── default.rb │ ├── recipes │ │ ├── default.rb │ │ └── json_file.rb │ └── resources │ │ └── default.rb ├── chefignore ├── cron │ ├── CHANGELOG.md │ ├── README.md │ ├── definitions │ │ └── manage.rb │ ├── libraries │ │ └── matchers.rb │ ├── metadata.json │ ├── metadata.rb │ ├── providers │ │ └── d.rb │ ├── recipes │ │ ├── default.rb │ │ └── test.rb │ ├── resources │ │ └── d.rb │ └── templates │ │ └── default │ │ ├── cron.d.erb │ │ └── cron_manage.erb ├── logrotate │ ├── .gitignore │ ├── .kitchen.yml │ ├── .rubocop.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── TESTING.md │ ├── attributes │ │ └── default.rb │ ├── definitions │ │ └── logrotate_app.rb │ ├── libraries │ │ ├── logrotate_config.rb │ │ └── matchers.rb │ ├── metadata.json │ ├── metadata.rb │ ├── recipes │ │ ├── default.rb │ │ └── global.rb │ └── templates │ │ └── default │ │ ├── logrotate-global.erb │ │ └── logrotate.erb ├── motd │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── metadata.rb │ ├── recipes │ │ └── default.rb │ └── templates │ │ └── default │ │ └── motd.erb ├── ntp │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── files │ │ ├── default │ │ │ ├── ntp.ini │ │ │ ├── ntp.leapseconds │ │ │ ├── tests │ │ │ │ └── minitest │ │ │ │ │ ├── default_test.rb │ │ │ │ │ ├── support │ │ │ │ │ └── helpers.rb │ │ │ │ │ └── undo_test.rb │ │ │ └── usr.sbin.ntpd.apparmor │ │ └── ubuntu-10 │ │ │ └── usr.sbin.ntpd.apparmor │ ├── libraries │ │ └── ntp_helper.rb │ ├── metadata.json │ ├── recipes │ │ ├── apparmor.rb │ │ ├── default.rb │ │ ├── undo.rb │ │ └── windows_client.rb │ └── templates │ │ └── default │ │ └── ntp.conf.erb ├── ohai │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── files │ │ └── default │ │ │ └── plugins │ │ │ └── README │ ├── metadata.json │ ├── metadata.rb │ ├── providers │ │ └── hint.rb │ ├── recipes │ │ └── default.rb │ └── resources │ │ └── hint.rb ├── pci │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── metadata.rb │ └── recipes │ │ └── default.rb ├── postfix │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── files │ │ └── default │ │ │ └── tests │ │ │ └── minitest │ │ │ └── support │ │ │ └── helpers.rb │ ├── metadata.json │ ├── metadata.rb │ ├── recipes │ │ ├── _attributes.rb │ │ ├── _common.rb │ │ ├── access.rb │ │ ├── aliases.rb │ │ ├── client.rb │ │ ├── default.rb │ │ ├── sasl_auth.rb │ │ ├── server.rb │ │ ├── transports.rb │ │ ├── virtual_aliases.rb │ │ └── virtual_aliases_domains.rb │ └── templates │ │ └── default │ │ ├── access.erb │ │ ├── aliases.erb │ │ ├── main.cf.erb │ │ ├── manifest-postfix.xml.erb │ │ ├── master.cf.erb │ │ ├── port_smtp.erb │ │ ├── sasl_passwd.erb │ │ ├── sender_canonical.erb │ │ ├── smtp_generic.erb │ │ ├── transport.erb │ │ ├── virtual_aliases.erb │ │ └── virtual_aliases_domains.erb ├── users │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.rb │ └── recipes │ │ ├── default.rb │ │ └── groups.rb └── windows │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ └── default.rb │ ├── files │ └── default │ │ └── handlers │ │ └── windows_reboot_handler.rb │ ├── libraries │ ├── feature_base.rb │ ├── matchers.rb │ ├── powershell_helper.rb │ ├── powershell_out.rb │ ├── registry_helper.rb │ ├── version.rb │ ├── windows_architecture_helper.rb │ ├── windows_helper.rb │ ├── windows_package.rb │ ├── windows_privileged.rb │ └── wmi_helper.rb │ ├── metadata.json │ ├── providers │ ├── auto_run.rb │ ├── batch.rb │ ├── feature_dism.rb │ ├── feature_powershell.rb │ ├── feature_servermanagercmd.rb │ ├── font.rb │ ├── pagefile.rb │ ├── path.rb │ ├── printer.rb │ ├── printer_port.rb │ ├── reboot.rb │ ├── registry.rb │ ├── shortcut.rb │ ├── task.rb │ └── zipfile.rb │ ├── recipes │ ├── default.rb │ └── reboot_handler.rb │ └── resources │ ├── auto_run.rb │ ├── batch.rb │ ├── feature.rb │ ├── font.rb │ ├── pagefile.rb │ ├── path.rb │ ├── printer.rb │ ├── printer_port.rb │ ├── reboot.rb │ ├── registry.rb │ ├── shortcut.rb │ ├── task.rb │ └── zipfile.rb ├── data_bags ├── groups │ └── clowns.json └── users │ ├── bobo.json │ └── frank.json ├── environments ├── dev.rb └── production.rb └── roles ├── base.rb ├── starter.rb └── web.rb /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/Berksfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/Vagrantfile -------------------------------------------------------------------------------- /cookbooks/apache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/README.md -------------------------------------------------------------------------------- /cookbooks/apache/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/apache/files/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/files/default/index.html -------------------------------------------------------------------------------- /cookbooks/apache/files/default/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/files/default/index1.html -------------------------------------------------------------------------------- /cookbooks/apache/files/default/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/files/default/index2.html -------------------------------------------------------------------------------- /cookbooks/apache/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/metadata.rb -------------------------------------------------------------------------------- /cookbooks/apache/providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/apache/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/apache/recipes/ip-logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/recipes/ip-logger.rb -------------------------------------------------------------------------------- /cookbooks/apache/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cookbooks/apache/templates/default/custom.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/templates/default/custom.erb -------------------------------------------------------------------------------- /cookbooks/apache/templates/default/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/apache/templates/default/index.html.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/chef-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/README.md -------------------------------------------------------------------------------- /cookbooks/chef-client/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/libraries/helpers.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/metadata.json -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/_unit_test_cloning_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/_unit_test_cloning_resource.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/bluepill_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/bluepill_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/bsd_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/bsd_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/config.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/cron.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/daemontools_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/daemontools_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/delete_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/delete_validation.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/init_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/init_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/launchd_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/launchd_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/runit_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/runit_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/smf_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/smf_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/src_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/src_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/systemd_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/systemd_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/task.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/upstart_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/upstart_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/recipes/windows_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/recipes/windows_service.rb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/arch/chef/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/arch/chef/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/chef-client.pill.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/chef-client.pill.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/client.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/client.rb.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/com.chef.chef-client.plist.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/com.chef.chef-client.plist.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/debian/default/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/debian/default/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/debian/init.d/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/debian/init.d/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/debian/init/chef-client.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/debian/init/chef-client.conf.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/fedora/sysconfig/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/fedora/sysconfig/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/redhat/init.d/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/redhat/init.d/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/redhat/sysconfig/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/redhat/sysconfig/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/solaris/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/solaris/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/solaris/manifest.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/solaris/manifest.xml.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/suse/init.d/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/suse/init.d/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/suse/sysconfig/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/suse/sysconfig/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/sv-chef-client-log-run.erb: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec svlogd -tt <%= node["chef_client"]["log_dir"] %> 3 | -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/sv-chef-client-run.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/sv-chef-client-run.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/default/systemd/chef-client.service.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/default/systemd/chef-client.service.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/freebsd/chef-client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef-client/templates/freebsd/chef-client.erb -------------------------------------------------------------------------------- /cookbooks/chef-client/templates/freebsd/chef.erb: -------------------------------------------------------------------------------- 1 | chef_enable="YES" 2 | -------------------------------------------------------------------------------- /cookbooks/chef_handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/chef_handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/README.md -------------------------------------------------------------------------------- /cookbooks/chef_handler/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/files/default/handlers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/files/default/handlers/README -------------------------------------------------------------------------------- /cookbooks/chef_handler/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/libraries/helpers.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/metadata.json -------------------------------------------------------------------------------- /cookbooks/chef_handler/providers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/providers/default.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/recipes/json_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/recipes/json_file.rb -------------------------------------------------------------------------------- /cookbooks/chef_handler/resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chef_handler/resources/default.rb -------------------------------------------------------------------------------- /cookbooks/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/chefignore -------------------------------------------------------------------------------- /cookbooks/cron/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/README.md -------------------------------------------------------------------------------- /cookbooks/cron/definitions/manage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/definitions/manage.rb -------------------------------------------------------------------------------- /cookbooks/cron/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/cron/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/metadata.json -------------------------------------------------------------------------------- /cookbooks/cron/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/metadata.rb -------------------------------------------------------------------------------- /cookbooks/cron/providers/d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/providers/d.rb -------------------------------------------------------------------------------- /cookbooks/cron/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/cron/recipes/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/recipes/test.rb -------------------------------------------------------------------------------- /cookbooks/cron/resources/d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/resources/d.rb -------------------------------------------------------------------------------- /cookbooks/cron/templates/default/cron.d.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/templates/default/cron.d.erb -------------------------------------------------------------------------------- /cookbooks/cron/templates/default/cron_manage.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/cron/templates/default/cron_manage.erb -------------------------------------------------------------------------------- /cookbooks/logrotate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/.gitignore -------------------------------------------------------------------------------- /cookbooks/logrotate/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/.kitchen.yml -------------------------------------------------------------------------------- /cookbooks/logrotate/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/.rubocop.yml -------------------------------------------------------------------------------- /cookbooks/logrotate/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/.travis.yml -------------------------------------------------------------------------------- /cookbooks/logrotate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/logrotate/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/CONTRIBUTING.md -------------------------------------------------------------------------------- /cookbooks/logrotate/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/Gemfile -------------------------------------------------------------------------------- /cookbooks/logrotate/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/Gemfile.lock -------------------------------------------------------------------------------- /cookbooks/logrotate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/LICENSE -------------------------------------------------------------------------------- /cookbooks/logrotate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/README.md -------------------------------------------------------------------------------- /cookbooks/logrotate/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/TESTING.md -------------------------------------------------------------------------------- /cookbooks/logrotate/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/logrotate/definitions/logrotate_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/definitions/logrotate_app.rb -------------------------------------------------------------------------------- /cookbooks/logrotate/libraries/logrotate_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/libraries/logrotate_config.rb -------------------------------------------------------------------------------- /cookbooks/logrotate/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/logrotate/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/metadata.json -------------------------------------------------------------------------------- /cookbooks/logrotate/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/metadata.rb -------------------------------------------------------------------------------- /cookbooks/logrotate/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/logrotate/recipes/global.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/recipes/global.rb -------------------------------------------------------------------------------- /cookbooks/logrotate/templates/default/logrotate-global.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/templates/default/logrotate-global.erb -------------------------------------------------------------------------------- /cookbooks/logrotate/templates/default/logrotate.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/logrotate/templates/default/logrotate.erb -------------------------------------------------------------------------------- /cookbooks/motd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/motd/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/motd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/motd/README.md -------------------------------------------------------------------------------- /cookbooks/motd/attributes/default.rb: -------------------------------------------------------------------------------- 1 | default["motd"]["company"] = "Chef" 2 | -------------------------------------------------------------------------------- /cookbooks/motd/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/motd/metadata.rb -------------------------------------------------------------------------------- /cookbooks/motd/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/motd/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/motd/templates/default/motd.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/motd/templates/default/motd.erb -------------------------------------------------------------------------------- /cookbooks/ntp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/ntp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/README.md -------------------------------------------------------------------------------- /cookbooks/ntp/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/ntp/files/default/ntp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/files/default/ntp.ini -------------------------------------------------------------------------------- /cookbooks/ntp/files/default/ntp.leapseconds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/files/default/ntp.leapseconds -------------------------------------------------------------------------------- /cookbooks/ntp/files/default/tests/minitest/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/files/default/tests/minitest/default_test.rb -------------------------------------------------------------------------------- /cookbooks/ntp/files/default/tests/minitest/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/files/default/tests/minitest/support/helpers.rb -------------------------------------------------------------------------------- /cookbooks/ntp/files/default/tests/minitest/undo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/files/default/tests/minitest/undo_test.rb -------------------------------------------------------------------------------- /cookbooks/ntp/files/default/usr.sbin.ntpd.apparmor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/files/default/usr.sbin.ntpd.apparmor -------------------------------------------------------------------------------- /cookbooks/ntp/files/ubuntu-10/usr.sbin.ntpd.apparmor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/files/ubuntu-10/usr.sbin.ntpd.apparmor -------------------------------------------------------------------------------- /cookbooks/ntp/libraries/ntp_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/libraries/ntp_helper.rb -------------------------------------------------------------------------------- /cookbooks/ntp/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/metadata.json -------------------------------------------------------------------------------- /cookbooks/ntp/recipes/apparmor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/recipes/apparmor.rb -------------------------------------------------------------------------------- /cookbooks/ntp/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/ntp/recipes/undo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/recipes/undo.rb -------------------------------------------------------------------------------- /cookbooks/ntp/recipes/windows_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/recipes/windows_client.rb -------------------------------------------------------------------------------- /cookbooks/ntp/templates/default/ntp.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ntp/templates/default/ntp.conf.erb -------------------------------------------------------------------------------- /cookbooks/ohai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/ohai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/README.md -------------------------------------------------------------------------------- /cookbooks/ohai/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/ohai/files/default/plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/files/default/plugins/README -------------------------------------------------------------------------------- /cookbooks/ohai/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/metadata.json -------------------------------------------------------------------------------- /cookbooks/ohai/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/metadata.rb -------------------------------------------------------------------------------- /cookbooks/ohai/providers/hint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/providers/hint.rb -------------------------------------------------------------------------------- /cookbooks/ohai/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/ohai/resources/hint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/ohai/resources/hint.rb -------------------------------------------------------------------------------- /cookbooks/pci/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/pci/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/pci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/pci/README.md -------------------------------------------------------------------------------- /cookbooks/pci/attributes/default.rb: -------------------------------------------------------------------------------- 1 | default["pci"]["in_scope"] = false 2 | -------------------------------------------------------------------------------- /cookbooks/pci/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/pci/metadata.rb -------------------------------------------------------------------------------- /cookbooks/pci/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/pci/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/postfix/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/postfix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/README.md -------------------------------------------------------------------------------- /cookbooks/postfix/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/postfix/files/default/tests/minitest/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/files/default/tests/minitest/support/helpers.rb -------------------------------------------------------------------------------- /cookbooks/postfix/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/metadata.json -------------------------------------------------------------------------------- /cookbooks/postfix/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/metadata.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/_attributes.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/_common.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/access.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/aliases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/aliases.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/client.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/sasl_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/sasl_auth.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/server.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/transports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/transports.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/virtual_aliases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/virtual_aliases.rb -------------------------------------------------------------------------------- /cookbooks/postfix/recipes/virtual_aliases_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/recipes/virtual_aliases_domains.rb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/access.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/access.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/aliases.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/aliases.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/main.cf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/main.cf.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/manifest-postfix.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/manifest-postfix.xml.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/master.cf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/master.cf.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/port_smtp.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/port_smtp.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/sasl_passwd.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/sasl_passwd.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/sender_canonical.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/sender_canonical.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/smtp_generic.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/smtp_generic.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/transport.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/transport.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/virtual_aliases.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/virtual_aliases.erb -------------------------------------------------------------------------------- /cookbooks/postfix/templates/default/virtual_aliases_domains.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/postfix/templates/default/virtual_aliases_domains.erb -------------------------------------------------------------------------------- /cookbooks/users/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/users/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/users/README.md -------------------------------------------------------------------------------- /cookbooks/users/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/users/metadata.rb -------------------------------------------------------------------------------- /cookbooks/users/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/users/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/users/recipes/groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/users/recipes/groups.rb -------------------------------------------------------------------------------- /cookbooks/windows/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/README.md -------------------------------------------------------------------------------- /cookbooks/windows/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/windows/files/default/handlers/windows_reboot_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/files/default/handlers/windows_reboot_handler.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/feature_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/feature_base.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/matchers.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/powershell_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/powershell_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/powershell_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/powershell_out.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/registry_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/registry_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/version.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/windows_architecture_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/windows_architecture_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/windows_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/windows_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/windows_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/windows_package.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/windows_privileged.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/windows_privileged.rb -------------------------------------------------------------------------------- /cookbooks/windows/libraries/wmi_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/libraries/wmi_helper.rb -------------------------------------------------------------------------------- /cookbooks/windows/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/metadata.json -------------------------------------------------------------------------------- /cookbooks/windows/providers/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/auto_run.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/batch.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/feature_dism.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/feature_dism.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/feature_powershell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/feature_powershell.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/feature_servermanagercmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/feature_servermanagercmd.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/font.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/pagefile.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/path.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/printer.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/printer_port.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/reboot.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/registry.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/shortcut.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/task.rb -------------------------------------------------------------------------------- /cookbooks/windows/providers/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/providers/zipfile.rb -------------------------------------------------------------------------------- /cookbooks/windows/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/windows/recipes/reboot_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/recipes/reboot_handler.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/auto_run.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/batch.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/feature.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/font.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/pagefile.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/path.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/printer.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/printer_port.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/reboot.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/registry.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/shortcut.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/task.rb -------------------------------------------------------------------------------- /cookbooks/windows/resources/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/cookbooks/windows/resources/zipfile.rb -------------------------------------------------------------------------------- /data_bags/groups/clowns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/data_bags/groups/clowns.json -------------------------------------------------------------------------------- /data_bags/users/bobo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/data_bags/users/bobo.json -------------------------------------------------------------------------------- /data_bags/users/frank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/data_bags/users/frank.json -------------------------------------------------------------------------------- /environments/dev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/environments/dev.rb -------------------------------------------------------------------------------- /environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/environments/production.rb -------------------------------------------------------------------------------- /roles/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/roles/base.rb -------------------------------------------------------------------------------- /roles/starter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/roles/starter.rb -------------------------------------------------------------------------------- /roles/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-training/chef-fundamentals-repo/HEAD/roles/web.rb --------------------------------------------------------------------------------