├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── attributes └── default.rb ├── chefignore ├── metadata.rb ├── resources ├── domain_join_ubuntu1404.rb ├── domain_join_ubuntu1604.rb └── domain_join_windows.rb └── test ├── .rspec ├── Rakefile ├── SUPERMARKET.md ├── cookbooks ├── mycompany-ad-join-linux │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── files │ │ └── CHEF-mkhomedir.txt │ ├── metadata.rb │ ├── recipes │ │ └── default.rb │ └── templates │ │ └── default │ │ ├── krb5.conf.erb │ │ └── sssd.conf.erb └── mycompany-ad-join-windows │ ├── README.md │ ├── metadata.rb │ └── recipes │ └── default.rb └── spec ├── ad-join ├── 1_domain_spec.rb ├── 3_user_spec.rb └── 4_chef_client_spec_dis.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/Vagrantfile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/chefignore -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/metadata.rb -------------------------------------------------------------------------------- /resources/domain_join_ubuntu1404.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/resources/domain_join_ubuntu1404.rb -------------------------------------------------------------------------------- /resources/domain_join_ubuntu1604.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/resources/domain_join_ubuntu1604.rb -------------------------------------------------------------------------------- /resources/domain_join_windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/resources/domain_join_windows.rb -------------------------------------------------------------------------------- /test/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /test/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/Rakefile -------------------------------------------------------------------------------- /test/SUPERMARKET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/SUPERMARKET.md -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-linux/README.md: -------------------------------------------------------------------------------- 1 | # mycompany-ad-join-linux 2 | -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-linux/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-linux/attributes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-linux/files/CHEF-mkhomedir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-linux/files/CHEF-mkhomedir.txt -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-linux/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-linux/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-linux/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-linux/recipes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-linux/templates/default/krb5.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-linux/templates/default/krb5.conf.erb -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-linux/templates/default/sssd.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-linux/templates/default/sssd.conf.erb -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-windows/README.md: -------------------------------------------------------------------------------- 1 | # mycompany-ad-join-windows 2 | -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-windows/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-windows/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/mycompany-ad-join-windows/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/cookbooks/mycompany-ad-join-windows/recipes/default.rb -------------------------------------------------------------------------------- /test/spec/ad-join/1_domain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/spec/ad-join/1_domain_spec.rb -------------------------------------------------------------------------------- /test/spec/ad-join/3_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/spec/ad-join/3_user_spec.rb -------------------------------------------------------------------------------- /test/spec/ad-join/4_chef_client_spec_dis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/spec/ad-join/4_chef_client_spec_dis.rb -------------------------------------------------------------------------------- /test/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDocuments-Archive/ad-join-cookbook/HEAD/test/spec/spec_helper.rb --------------------------------------------------------------------------------