├── .gitignore ├── .kitchen.yml ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── TESTING.md ├── Thorfile ├── attributes └── default.rb ├── chefignore ├── metadata.rb ├── recipes ├── default.rb └── vmware.rb ├── spec ├── default_spec.rb ├── spec_helper.rb └── vmware_spec.rb └── test └── integration ├── default └── serverspec │ └── default_spec.rb └── wildcard └── serverspec └── default_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/Rakefile -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/TESTING.md -------------------------------------------------------------------------------- /Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/Thorfile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/chefignore -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/vmware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/recipes/vmware.rb -------------------------------------------------------------------------------- /spec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/spec/default_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/vmware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/spec/vmware_spec.rb -------------------------------------------------------------------------------- /test/integration/default/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/test/integration/default/serverspec/default_spec.rb -------------------------------------------------------------------------------- /test/integration/wildcard/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3ofcoins/chef-cookbook-hostname/HEAD/test/integration/wildcard/serverspec/default_spec.rb --------------------------------------------------------------------------------