Skip to content

Commit 1e08e56

Browse files
Sebastian Gumprichchris-rock
authored andcommitted
Add explicit role-path to kitchen.yml
Before this PR role path was searched with regex in the docroot. Now it's explicitly declared. Also added two gems to gemfile for faster copying to virtualbox
1 parent 1ae134c commit 1e08e56

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.kitchen.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,7 @@ suites:
5353
hosts: all
5454
ansible_verbose: true
5555
ansible_version: 1.9.2
56+
ansible_diff: true
57+
roles_path: ../ansible-os-hardening/
5658
provisioner:
5759
playbook: test/integration/playbooks/default.yml

Gemfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,24 @@ source 'https://rubygems.org'
44

55
group :test do
66
gem 'rake'
7-
# gem 'chefspec', '~> 4.2.0'
87
gem 'foodcritic', '~> 4.0'
98
gem 'thor-foodcritic'
10-
# gem 'rubocop', '~> 0.28.0'
119
gem 'coveralls', require: false
1210
end
1311

1412
group :development do
1513
gem 'guard'
1614
gem 'guard-rspec'
1715
gem 'guard-kitchen'
18-
# gem 'guard-rubocop'
19-
# gem 'guard-foodcritic'
2016
end
2117

2218
group :integration do
2319
gem 'test-kitchen', '~> 1.0'
2420
gem 'kitchen-ansible'
2521
gem 'kitchen-vagrant'
2622
gem 'kitchen-sharedtests', '~> 0.2.0'
23+
gem 'kitchen-sync'
24+
gem 'kitchen-transport-rsync'
2725
end
2826

2927
group :openstack do

0 commit comments

Comments
 (0)