├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── chef-provisioning-ssh.gemspec ├── lib └── chef │ ├── provider │ └── ssh_cluster.rb │ ├── provisioning │ ├── driver_init │ │ └── ssh.rb │ ├── ssh_driver.rb │ └── ssh_driver │ │ ├── driver.rb │ │ ├── helpers.rb │ │ └── version.rb │ └── resource │ └── ssh_cluster.rb └── test ├── .chef ├── knife.rb └── stickywicket.pem ├── Vagrantfile └── cookbooks ├── chef_handler ├── CHANGELOG.md ├── README.md ├── attributes │ └── default.rb ├── files │ └── default │ │ └── handlers │ │ └── README ├── libraries │ └── matchers.rb ├── metadata.json ├── providers │ └── default.rb ├── recipes │ ├── default.rb │ └── json_file.rb └── resources │ └── default.rb ├── vagrant ├── CHANGELOG.md ├── README.md ├── metadata.rb └── recipes │ ├── default.rb │ ├── sshone.rb │ ├── sshone_2.rb │ ├── sshtwo.rb │ ├── sshtwo_2.rb │ ├── test_destroy.rb │ ├── test_ssh.rb │ └── test_winrm.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /chef-provisioning-ssh.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/chef-provisioning-ssh.gemspec -------------------------------------------------------------------------------- /lib/chef/provider/ssh_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/lib/chef/provider/ssh_cluster.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/driver_init/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/lib/chef/provisioning/driver_init/ssh.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/ssh_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/lib/chef/provisioning/ssh_driver.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/ssh_driver/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/lib/chef/provisioning/ssh_driver/driver.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/ssh_driver/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/lib/chef/provisioning/ssh_driver/helpers.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/ssh_driver/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/lib/chef/provisioning/ssh_driver/version.rb -------------------------------------------------------------------------------- /lib/chef/resource/ssh_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/lib/chef/resource/ssh_cluster.rb -------------------------------------------------------------------------------- /test/.chef/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/.chef/knife.rb -------------------------------------------------------------------------------- /test/.chef/stickywicket.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/.chef/stickywicket.pem -------------------------------------------------------------------------------- /test/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/Vagrantfile -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/CHANGELOG.md -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/README.md -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/attributes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/files/default/handlers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/files/default/handlers/README -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/libraries/matchers.rb -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/metadata.json -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/providers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/providers/default.rb -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/recipes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/recipes/json_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/recipes/json_file.rb -------------------------------------------------------------------------------- /test/cookbooks/chef_handler/resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/chef_handler/resources/default.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/CHANGELOG.md -------------------------------------------------------------------------------- /test/cookbooks/vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/README.md -------------------------------------------------------------------------------- /test/cookbooks/vagrant/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/sshone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/sshone.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/sshone_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/sshone_2.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/sshtwo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/sshtwo.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/sshtwo_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/sshtwo_2.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/test_destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/test_destroy.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/test_ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/test_ssh.rb -------------------------------------------------------------------------------- /test/cookbooks/vagrant/recipes/test_winrm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/vagrant/recipes/test_winrm.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/CHANGELOG.md -------------------------------------------------------------------------------- /test/cookbooks/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/README.md -------------------------------------------------------------------------------- /test/cookbooks/windows/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/attributes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/files/default/handlers/windows_reboot_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/files/default/handlers/windows_reboot_handler.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/feature_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/feature_base.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/matchers.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/powershell_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/powershell_helper.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/powershell_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/powershell_out.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/registry_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/registry_helper.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/version.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/windows_architecture_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/windows_architecture_helper.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/windows_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/windows_helper.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/windows_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/windows_package.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/windows_privileged.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/windows_privileged.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/libraries/wmi_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/libraries/wmi_helper.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/metadata.json -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/auto_run.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/batch.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/feature_dism.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/feature_dism.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/feature_powershell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/feature_powershell.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/feature_servermanagercmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/feature_servermanagercmd.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/font.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/pagefile.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/path.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/printer.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/printer_port.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/reboot.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/registry.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/shortcut.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/task.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/providers/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/providers/zipfile.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/recipes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/recipes/reboot_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/recipes/reboot_handler.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/auto_run.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/batch.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/feature.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/font.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/pagefile.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/path.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/printer.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/printer_port.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/reboot.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/registry.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/shortcut.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/task.rb -------------------------------------------------------------------------------- /test/cookbooks/windows/resources/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-ssh/HEAD/test/cookbooks/windows/resources/zipfile.rb --------------------------------------------------------------------------------