diff options
author | John Keiser <john@johnkeiser.com> | 2016-04-15 12:10:40 -0700 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2016-04-18 14:21:02 -0700 |
commit | ea2593fe58037739c5c2ada517e3d988dec290ff (patch) | |
tree | 55142ceaef43080201a8d9e54f79868368241f60 /omnibus/.kitchen.yml | |
parent | bbc1d6ebccbd7f22fea72a9c2b76ef19f3b5beb3 (diff) | |
download | chef-ea2593fe58037739c5c2ada517e3d988dec290ff.tar.gz |
Make gemfile_util capable of copying groups over
Diffstat (limited to 'omnibus/.kitchen.yml')
-rw-r--r-- | omnibus/.kitchen.yml | 37 |
1 files changed, 16 insertions, 21 deletions
diff --git a/omnibus/.kitchen.yml b/omnibus/.kitchen.yml index 6a56b92dcb..e64cadca26 100644 --- a/omnibus/.kitchen.yml +++ b/omnibus/.kitchen.yml @@ -11,9 +11,7 @@ driver: cpus: 4 memory: 4096 synced_folders: - - ['..', '/home/vagrant/chef'] - - ['../../omnibus', '/home/vagrant/omnibus'] - - ['../../omnibus-software', '/home/vagrant/omnibus-software'] + - ['../..', '/home/vagrant'] provisioner: name: chef_zero @@ -21,6 +19,11 @@ provisioner: # This is not the version of chef that we're building - this is the version # of chef that omnibus needs to build chef/chef. require_chef_omnibus: true + attributes: + vagrant: + this_key_exists_so_we_have_a_vagrant_key: true + chef_omnibus_install_options: -P angrychef + chef_omnibus_root: /opt/angrychef platforms: - name: centos-5.11 @@ -73,6 +76,8 @@ platforms: - name: windows-2012r2-standard driver: box: chef/windows-server-2012r2-standard # private + provisioner: + chef_omnibus_root: /opscode/angrychef attribute_defaults: &attribute_defaults build_user: vagrant @@ -80,27 +85,17 @@ attribute_defaults: &attribute_defaults build_user_password: vagrant suites: - - name: angrychef - attributes: - omnibus: - <<: *attribute_defaults - install_dir: /opt/angrychef - run_list: - - omnibus::default - - name: chef-fips - attributes: - omnibus: - <<: *attribute_defaults - install_dir: /opt/chef-fips - run_list: - - omnibus::default + # - name: angrychef + # attributes: + # omnibus: + # <<: *attribute_defaults + # install_dir: /opt/angrychef + # run_list: + # - omnibus::default - name: chef - provisioner: - chef_omnibus_install_options: -P angrychef - chef_omnibus_root: /opt/angrychef attributes: omnibus: <<: *attribute_defaults - install_dir: /opt/chef + install_dir: /opscode/chef run_list: - omnibus::default |