kitchen-ansible 0.57.0 → 0.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/kitchen/provisioner/ansible_playbook.rb +10 -6
- data/lib/kitchen-ansible/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f07044f590a634ea00c49ab8d4b8ae9119a75092f64fd0c2b4057c66a854df6
|
|
4
|
+
data.tar.gz: 4c1b6bd5047fa3cbf442ed94f30d9eef99a83c6f01ecfc40d52b065328f1111c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d398e0181ee4468fd7804399b1575c3dd6f3a6c51c9e1cd125d0e27360272f85f805e574a597904c7c22ec80767c0da6f1bf05a30cf15ecbb3a700a2a7921ecb
|
|
7
|
+
data.tar.gz: 1e2df54600778d404c4a6efacbf4751fc017805bed67443dbf8590f06357cbae1d3e5b5a264854ffe52b810702be50a8f3218b54adccf1748740c41a060cff68
|
|
@@ -322,13 +322,17 @@ module Kitchen
|
|
|
322
322
|
sudo_env('cp'), File.join(config[:root_path], 'ansible.cfg'), '$ETC_ANSIBLE/.'
|
|
323
323
|
].join(' ')
|
|
324
324
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
325
|
+
if File.directory?(File.join(config[:root_path], 'group_vars'))
|
|
326
|
+
commands << [
|
|
327
|
+
sudo_env('cp -r'), File.join(config[:root_path], 'group_vars'), '$ETC_ANSIBLE/.'
|
|
328
|
+
].join(' ')
|
|
329
|
+
end
|
|
328
330
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
331
|
+
if File.directory?(File.join(config[:root_path], 'host_vars'))
|
|
332
|
+
commands << [
|
|
333
|
+
sudo_env('cp -r'), File.join(config[:root_path], 'host_vars'), '$ETC_ANSIBLE/.'
|
|
334
|
+
].join(' ')
|
|
335
|
+
end
|
|
332
336
|
|
|
333
337
|
if config[:ssh_known_hosts]
|
|
334
338
|
config[:ssh_known_hosts].each do |host|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-ansible
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.58.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Neill Turner
|
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
130
|
version: '0'
|
|
131
131
|
requirements: []
|
|
132
|
-
rubygems_version:
|
|
132
|
+
rubygems_version: 3.6.9
|
|
133
133
|
specification_version: 4
|
|
134
134
|
summary: ansible provisioner for test-kitchen
|
|
135
135
|
test_files: []
|