├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── spiceweasel ├── lib ├── spiceweasel.rb └── spiceweasel │ ├── berksfile.rb │ ├── cli.rb │ ├── clusters.rb │ ├── command.rb │ ├── command_helper.rb │ ├── config.rb │ ├── cookbooks.rb │ ├── data_bags.rb │ ├── environments.rb │ ├── execute.rb │ ├── extract_local.rb │ ├── knife.rb │ ├── log.rb │ ├── nodes.rb │ ├── roles.rb │ └── version.rb ├── spec ├── chef_client_spec.rb ├── chef_repo_spec.rb ├── extract_repo_spec.rb ├── google_spec.rb ├── joyent_vsphere_spec.rb ├── knife_spec.rb ├── kvm_spec.rb ├── node_spec.rb ├── only_spec.rb ├── spec_helper.rb └── spiceweasel_spec.rb ├── spiceweasel.gemspec └── test ├── chef-repo ├── .chef │ └── knife.rb ├── Berksfile ├── Berksfile.lock ├── PASSWORD ├── cookbooks │ ├── abc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── def │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── fail1 │ │ ├── README.md │ │ └── metadata.rb │ ├── fail2 │ │ ├── README.md │ │ └── metadata.rb │ ├── fail3 │ │ ├── README.md │ │ └── metadata.rb │ ├── ghi │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── jkl │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ └── mno │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ └── default.rb ├── data_bags │ ├── junk │ │ ├── README │ │ ├── abc.json │ │ ├── ade.json │ │ ├── afg.json │ │ ├── bcd.json │ │ ├── sub1 │ │ │ ├── cde1.json │ │ │ └── cde2.json │ │ └── sub2 │ │ │ ├── def1.json │ │ │ └── def2.json │ └── users │ │ ├── README │ │ ├── badjson.json │ │ ├── failname.json │ │ ├── mray.json │ │ └── ubuntu.json ├── environments │ ├── development.rb │ ├── fail2.rb │ ├── fail3.rb │ ├── production-blue.json │ ├── production-green.json │ ├── production-red.json │ ├── qa.rb │ └── sub │ │ ├── efg1.rb │ │ └── efg2.json ├── fail-cookbook1.yml ├── fail-cookbook2.yml ├── fail-cookbook3.yml ├── fail-cookbook4.yml ├── fail-cookbook5.yml ├── fail-cookbook6.yml ├── fail-db1.yml ├── fail-db2.yml ├── fail-db3.yml ├── fail-db4.yml ├── fail-env1.yml ├── fail-env2.yml ├── fail-env3.yml ├── fail-env4.yml ├── fail-roles1.yml ├── fail-roles2.yml ├── fail-roles3.yml ├── fail-roles4.yml ├── fail-roles5.yml ├── infrastructure.yml ├── nodes │ ├── boxy.lab.atx.json │ └── guenter.home.atx.json └── roles │ ├── README │ ├── base.rb │ ├── base2.rb │ ├── base3.rb │ ├── base4.rb │ ├── fail1.rb │ ├── fail2.rb │ ├── fail3.rb │ ├── sub │ ├── bw2.json │ └── bwi1.json │ └── tc.rb ├── examples ├── cluster-file-example.yml ├── example-cluster.yml ├── example.json ├── example.rb ├── example.yml ├── google-example.yml ├── joyent-vsphere-example.yml ├── knife.yml ├── kvm-example.yml ├── node-example.yml └── php-quick-start.yml ├── extract-repo ├── .chef │ └── knife.rb ├── Berksfile ├── Berksfile.lock ├── cookbooks │ ├── abc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── def │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── ghi │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── jkl │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ └── mno │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes │ │ └── default.rb ├── data_bags │ ├── junk │ │ ├── README │ │ ├── abc.json │ │ ├── ade.json │ │ ├── afg.json │ │ ├── bcd.json │ │ ├── sub1 │ │ │ ├── cde1.json │ │ │ └── cde2.json │ │ └── sub2 │ │ │ ├── def1.json │ │ │ └── def2.json │ └── users │ │ ├── README │ │ ├── mray.json │ │ └── ubuntu.json ├── environments │ ├── development.rb │ ├── production-blue.json │ ├── production-green.json │ ├── production-red.json │ ├── qa.rb │ └── sub │ │ ├── efg1.rb │ │ └── efg2.json ├── nodes │ ├── boxy.lab.atx.json │ └── guenter.home.atx.json └── roles │ ├── README │ ├── base.rb │ ├── base2.rb │ ├── base3.rb │ ├── base4.rb │ ├── sub │ ├── bw2.json │ └── bwi1.json │ └── tc.rb └── extract-repo2 ├── .chef └── knife.rb ├── cookbooks └── README.md ├── data_bags └── README.md ├── environments └── README.md ├── nodes └── README.md └── roles └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/spiceweasel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/bin/spiceweasel -------------------------------------------------------------------------------- /lib/spiceweasel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel.rb -------------------------------------------------------------------------------- /lib/spiceweasel/berksfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/berksfile.rb -------------------------------------------------------------------------------- /lib/spiceweasel/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/cli.rb -------------------------------------------------------------------------------- /lib/spiceweasel/clusters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/clusters.rb -------------------------------------------------------------------------------- /lib/spiceweasel/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/command.rb -------------------------------------------------------------------------------- /lib/spiceweasel/command_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/command_helper.rb -------------------------------------------------------------------------------- /lib/spiceweasel/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/config.rb -------------------------------------------------------------------------------- /lib/spiceweasel/cookbooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/cookbooks.rb -------------------------------------------------------------------------------- /lib/spiceweasel/data_bags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/data_bags.rb -------------------------------------------------------------------------------- /lib/spiceweasel/environments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/environments.rb -------------------------------------------------------------------------------- /lib/spiceweasel/execute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/execute.rb -------------------------------------------------------------------------------- /lib/spiceweasel/extract_local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/extract_local.rb -------------------------------------------------------------------------------- /lib/spiceweasel/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/knife.rb -------------------------------------------------------------------------------- /lib/spiceweasel/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/log.rb -------------------------------------------------------------------------------- /lib/spiceweasel/nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/nodes.rb -------------------------------------------------------------------------------- /lib/spiceweasel/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/roles.rb -------------------------------------------------------------------------------- /lib/spiceweasel/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/lib/spiceweasel/version.rb -------------------------------------------------------------------------------- /spec/chef_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/chef_client_spec.rb -------------------------------------------------------------------------------- /spec/chef_repo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/chef_repo_spec.rb -------------------------------------------------------------------------------- /spec/extract_repo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/extract_repo_spec.rb -------------------------------------------------------------------------------- /spec/google_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/google_spec.rb -------------------------------------------------------------------------------- /spec/joyent_vsphere_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/joyent_vsphere_spec.rb -------------------------------------------------------------------------------- /spec/knife_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/knife_spec.rb -------------------------------------------------------------------------------- /spec/kvm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/kvm_spec.rb -------------------------------------------------------------------------------- /spec/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/node_spec.rb -------------------------------------------------------------------------------- /spec/only_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/only_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spiceweasel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spec/spiceweasel_spec.rb -------------------------------------------------------------------------------- /spiceweasel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/spiceweasel.gemspec -------------------------------------------------------------------------------- /test/chef-repo/.chef/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/.chef/knife.rb -------------------------------------------------------------------------------- /test/chef-repo/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/Berksfile -------------------------------------------------------------------------------- /test/chef-repo/Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/Berksfile.lock -------------------------------------------------------------------------------- /test/chef-repo/PASSWORD: -------------------------------------------------------------------------------- 1 | SECRET! 2 | -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/abc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/abc/CHANGELOG.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/abc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/abc/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/abc/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/abc/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/abc/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/abc/recipes/default.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/def/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/def/CHANGELOG.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/def/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/def/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/def/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/def/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/def/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/def/recipes/default.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/fail1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/fail1/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/fail1/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/fail1/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/fail2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/fail2/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/fail2/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/fail2/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/fail3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/fail3/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/fail3/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/fail3/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/ghi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/ghi/CHANGELOG.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/ghi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/ghi/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/ghi/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/ghi/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/ghi/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/ghi/recipes/default.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/jkl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/jkl/CHANGELOG.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/jkl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/jkl/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/jkl/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/jkl/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/jkl/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/jkl/recipes/default.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/mno/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/mno/CHANGELOG.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/mno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/mno/README.md -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/mno/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/mno/metadata.rb -------------------------------------------------------------------------------- /test/chef-repo/cookbooks/mno/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/cookbooks/mno/recipes/default.rb -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/README: -------------------------------------------------------------------------------- 1 | README FOR SURE! 2 | -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/abc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/abc.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/ade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/ade.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/afg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/afg.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/bcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/bcd.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/sub1/cde1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/sub1/cde1.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/sub1/cde2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/sub1/cde2.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/sub2/def1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/sub2/def1.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/junk/sub2/def2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/junk/sub2/def2.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/users/README: -------------------------------------------------------------------------------- 1 | README FOR SURE! 2 | -------------------------------------------------------------------------------- /test/chef-repo/data_bags/users/badjson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/users/badjson.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/users/failname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/users/failname.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/users/mray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/users/mray.json -------------------------------------------------------------------------------- /test/chef-repo/data_bags/users/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/data_bags/users/ubuntu.json -------------------------------------------------------------------------------- /test/chef-repo/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/development.rb -------------------------------------------------------------------------------- /test/chef-repo/environments/fail2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/fail2.rb -------------------------------------------------------------------------------- /test/chef-repo/environments/fail3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/fail3.rb -------------------------------------------------------------------------------- /test/chef-repo/environments/production-blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/production-blue.json -------------------------------------------------------------------------------- /test/chef-repo/environments/production-green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/production-green.json -------------------------------------------------------------------------------- /test/chef-repo/environments/production-red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/production-red.json -------------------------------------------------------------------------------- /test/chef-repo/environments/qa.rb: -------------------------------------------------------------------------------- 1 | name "qa" 2 | description "Nova qa environment" 3 | -------------------------------------------------------------------------------- /test/chef-repo/environments/sub/efg1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/sub/efg1.rb -------------------------------------------------------------------------------- /test/chef-repo/environments/sub/efg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/environments/sub/efg2.json -------------------------------------------------------------------------------- /test/chef-repo/fail-cookbook1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-cookbook1.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-cookbook2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-cookbook2.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-cookbook3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-cookbook3.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-cookbook4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-cookbook4.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-cookbook5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-cookbook5.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-cookbook6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-cookbook6.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-db1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-db1.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-db2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-db2.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-db3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-db3.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-db4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-db4.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-env1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-env1.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-env2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-env2.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-env3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-env3.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-env4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-env4.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-roles1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-roles1.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-roles2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-roles2.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-roles3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-roles3.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-roles4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-roles4.yml -------------------------------------------------------------------------------- /test/chef-repo/fail-roles5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/fail-roles5.yml -------------------------------------------------------------------------------- /test/chef-repo/infrastructure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/infrastructure.yml -------------------------------------------------------------------------------- /test/chef-repo/nodes/boxy.lab.atx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/nodes/boxy.lab.atx.json -------------------------------------------------------------------------------- /test/chef-repo/nodes/guenter.home.atx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/nodes/guenter.home.atx.json -------------------------------------------------------------------------------- /test/chef-repo/roles/README: -------------------------------------------------------------------------------- 1 | README FOR SURE! 2 | -------------------------------------------------------------------------------- /test/chef-repo/roles/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/base.rb -------------------------------------------------------------------------------- /test/chef-repo/roles/base2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/base2.rb -------------------------------------------------------------------------------- /test/chef-repo/roles/base3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/base3.rb -------------------------------------------------------------------------------- /test/chef-repo/roles/base4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/base4.rb -------------------------------------------------------------------------------- /test/chef-repo/roles/fail1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/fail1.rb -------------------------------------------------------------------------------- /test/chef-repo/roles/fail2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/fail2.rb -------------------------------------------------------------------------------- /test/chef-repo/roles/fail3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/fail3.rb -------------------------------------------------------------------------------- /test/chef-repo/roles/sub/bw2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/sub/bw2.json -------------------------------------------------------------------------------- /test/chef-repo/roles/sub/bwi1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/sub/bwi1.json -------------------------------------------------------------------------------- /test/chef-repo/roles/tc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/chef-repo/roles/tc.rb -------------------------------------------------------------------------------- /test/examples/cluster-file-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/cluster-file-example.yml -------------------------------------------------------------------------------- /test/examples/example-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/example-cluster.yml -------------------------------------------------------------------------------- /test/examples/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/example.json -------------------------------------------------------------------------------- /test/examples/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/example.rb -------------------------------------------------------------------------------- /test/examples/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/example.yml -------------------------------------------------------------------------------- /test/examples/google-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/google-example.yml -------------------------------------------------------------------------------- /test/examples/joyent-vsphere-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/joyent-vsphere-example.yml -------------------------------------------------------------------------------- /test/examples/knife.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/knife.yml -------------------------------------------------------------------------------- /test/examples/kvm-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/kvm-example.yml -------------------------------------------------------------------------------- /test/examples/node-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/node-example.yml -------------------------------------------------------------------------------- /test/examples/php-quick-start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/examples/php-quick-start.yml -------------------------------------------------------------------------------- /test/extract-repo/.chef/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/.chef/knife.rb -------------------------------------------------------------------------------- /test/extract-repo/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/Berksfile -------------------------------------------------------------------------------- /test/extract-repo/Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/Berksfile.lock -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/abc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/abc/CHANGELOG.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/abc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/abc/README.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/abc/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/abc/metadata.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/abc/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/abc/recipes/default.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/def/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/def/CHANGELOG.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/def/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/def/README.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/def/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/def/metadata.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/def/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/def/recipes/default.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/ghi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/ghi/CHANGELOG.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/ghi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/ghi/README.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/ghi/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/ghi/metadata.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/ghi/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/ghi/recipes/default.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/jkl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/jkl/CHANGELOG.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/jkl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/jkl/README.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/jkl/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/jkl/metadata.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/jkl/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/jkl/recipes/default.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/mno/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/mno/CHANGELOG.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/mno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/mno/README.md -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/mno/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/mno/metadata.rb -------------------------------------------------------------------------------- /test/extract-repo/cookbooks/mno/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/cookbooks/mno/recipes/default.rb -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/README: -------------------------------------------------------------------------------- 1 | README FOR SURE! 2 | -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/abc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/abc.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/ade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/ade.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/afg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/afg.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/bcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/bcd.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/sub1/cde1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/sub1/cde1.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/sub1/cde2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/sub1/cde2.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/sub2/def1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/sub2/def1.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/junk/sub2/def2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/junk/sub2/def2.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/users/README: -------------------------------------------------------------------------------- 1 | README FOR SURE! 2 | -------------------------------------------------------------------------------- /test/extract-repo/data_bags/users/mray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/users/mray.json -------------------------------------------------------------------------------- /test/extract-repo/data_bags/users/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/data_bags/users/ubuntu.json -------------------------------------------------------------------------------- /test/extract-repo/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/environments/development.rb -------------------------------------------------------------------------------- /test/extract-repo/environments/production-blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/environments/production-blue.json -------------------------------------------------------------------------------- /test/extract-repo/environments/production-green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/environments/production-green.json -------------------------------------------------------------------------------- /test/extract-repo/environments/production-red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/environments/production-red.json -------------------------------------------------------------------------------- /test/extract-repo/environments/qa.rb: -------------------------------------------------------------------------------- 1 | name "qa" 2 | description "Nova qa environment" 3 | -------------------------------------------------------------------------------- /test/extract-repo/environments/sub/efg1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/environments/sub/efg1.rb -------------------------------------------------------------------------------- /test/extract-repo/environments/sub/efg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/environments/sub/efg2.json -------------------------------------------------------------------------------- /test/extract-repo/nodes/boxy.lab.atx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/nodes/boxy.lab.atx.json -------------------------------------------------------------------------------- /test/extract-repo/nodes/guenter.home.atx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/nodes/guenter.home.atx.json -------------------------------------------------------------------------------- /test/extract-repo/roles/README: -------------------------------------------------------------------------------- 1 | README FOR SURE! 2 | -------------------------------------------------------------------------------- /test/extract-repo/roles/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/roles/base.rb -------------------------------------------------------------------------------- /test/extract-repo/roles/base2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/roles/base2.rb -------------------------------------------------------------------------------- /test/extract-repo/roles/base3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/roles/base3.rb -------------------------------------------------------------------------------- /test/extract-repo/roles/base4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/roles/base4.rb -------------------------------------------------------------------------------- /test/extract-repo/roles/sub/bw2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/roles/sub/bw2.json -------------------------------------------------------------------------------- /test/extract-repo/roles/sub/bwi1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/roles/sub/bwi1.json -------------------------------------------------------------------------------- /test/extract-repo/roles/tc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo/roles/tc.rb -------------------------------------------------------------------------------- /test/extract-repo2/.chef/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattray/spiceweasel/HEAD/test/extract-repo2/.chef/knife.rb -------------------------------------------------------------------------------- /test/extract-repo2/cookbooks/README.md: -------------------------------------------------------------------------------- 1 | ISSUE79 test 2 | -------------------------------------------------------------------------------- /test/extract-repo2/data_bags/README.md: -------------------------------------------------------------------------------- 1 | ISSUE79 test 2 | -------------------------------------------------------------------------------- /test/extract-repo2/environments/README.md: -------------------------------------------------------------------------------- 1 | ISSUE79 test 2 | -------------------------------------------------------------------------------- /test/extract-repo2/nodes/README.md: -------------------------------------------------------------------------------- 1 | ISSUE79 test 2 | -------------------------------------------------------------------------------- /test/extract-repo2/roles/README.md: -------------------------------------------------------------------------------- 1 | ISSUE79 test 2 | --------------------------------------------------------------------------------