├── .delivery └── project.toml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── branchcleanup.yml │ └── delivery.yml ├── .gitignore ├── .travis.yml ├── .vscode └── extensions.json ├── Berksfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── TESTING.md ├── attributes └── default.rb ├── chefignore ├── kitchen.dokken.yml ├── kitchen.yml ├── libraries └── helpers.rb ├── metadata.rb ├── recipes ├── addons.rb └── default.rb ├── spec ├── addons_spec.rb ├── default_spec.rb └── spec_helper.rb └── test ├── fixtures └── cookbooks │ └── test │ ├── metadata.rb │ └── recipes │ ├── add-ons-no-fqdn.rb │ ├── default.rb │ ├── no-fqdn.rb │ └── post-install.rb └── integration ├── add-ons-no-fqdn └── default_spec.rb ├── default └── default_spec.rb └── no-fqdn └── default_spec.rb /.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.delivery/project.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/branchcleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.github/workflows/branchcleanup.yml -------------------------------------------------------------------------------- /.github/workflows/delivery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.github/workflows/delivery.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/TESTING.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/chefignore -------------------------------------------------------------------------------- /kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/kitchen.dokken.yml -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/kitchen.yml -------------------------------------------------------------------------------- /libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/libraries/helpers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/addons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/recipes/addons.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /spec/addons_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/spec/addons_spec.rb -------------------------------------------------------------------------------- /spec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/spec/default_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- 1 | name 'test' 2 | version '0.0.1' 3 | 4 | depends 'chef-server' 5 | -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/recipes/add-ons-no-fqdn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/test/fixtures/cookbooks/test/recipes/add-ons-no-fqdn.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/test/fixtures/cookbooks/test/recipes/default.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/recipes/no-fqdn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/test/fixtures/cookbooks/test/recipes/no-fqdn.rb -------------------------------------------------------------------------------- /test/fixtures/cookbooks/test/recipes/post-install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/test/fixtures/cookbooks/test/recipes/post-install.rb -------------------------------------------------------------------------------- /test/integration/add-ons-no-fqdn/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/test/integration/add-ons-no-fqdn/default_spec.rb -------------------------------------------------------------------------------- /test/integration/default/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/test/integration/default/default_spec.rb -------------------------------------------------------------------------------- /test/integration/no-fqdn/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-cookbooks/chef-server/HEAD/test/integration/no-fqdn/default_spec.rb --------------------------------------------------------------------------------