Sha256: 8de6bfc12b65dbe100dab5f90f87227ba42b7377c9aeb84e6659c4ab3c4a5b93

Contents?: true

Size: 697 Bytes

Versions: 2

Compression:

Stored size: 697 Bytes

Contents

#
# Cookbook Name:: learn-the-basics-ubuntu
# Recipe:: setup
#
# Copyright (c) 2015 The Authors, All Rights Reserved.
include_recipe 'apt::default'
package 'curl'
package 'tree'

chefdk_version = '0.11.0'
chef_client_version = '12.7.0'

execute 'install Chef DK' do
  command 'curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -c current -P chefdk'
  not_if 'which chef'
end

control_group 'validate Chef DK installation' do
  control 'validate version' do
    describe command('chef --version') do
      its (:stdout) { should match /Chef Development Kit Version: #{chefdk_version}/ }
      its (:stdout) { should match /chef-client version: #{chef_client_version}/ }
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
chef-12.7.2 acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/setup.rb
chef-12.7.2-universal-mingw32 acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/learn-the-basics-ubuntu/recipes/setup.rb