kitchen-ansible 0.0.31 → 0.0.32
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-ansible/version.rb +1 -1
- data/lib/kitchen/provisioner/ansible_playbook.rb +2 -2
- data/provisioner_options.md +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f08d06cb07b8db0c91b7e09c02c456eab49f0ee6
|
|
4
|
+
data.tar.gz: 138bc11bc88f938f2c8441e800c0680539a6fde6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f54b626becfd89c1cf4a1a62a5fda490b896dd1dde6badf61a7213ba42b5fd9d55f5e6ff3a562661a5115e4c10aff7fd4d91d34b0e50ca83ee3d83d76e260c46
|
|
7
|
+
data.tar.gz: ced7c72e09d801abe19d4066572b446130e6def6abacff9b68b46928af4bb35dc585272b8dcbae01f9f624525e8d9fb8d72c2cc9ad44fd82ecbbdd587452cc73
|
|
@@ -477,7 +477,7 @@ module Kitchen
|
|
|
477
477
|
end
|
|
478
478
|
|
|
479
479
|
def tmp_ansible_vault_password_file_path
|
|
480
|
-
File.join(sandbox_path, File.basename(ansible_vault_password_file))
|
|
480
|
+
File.join(sandbox_path, File.basename(ansible_vault_password_file).reverse.chomp('.').reverse)
|
|
481
481
|
end
|
|
482
482
|
|
|
483
483
|
def tmp_inventory_file_path
|
|
@@ -574,7 +574,7 @@ module Kitchen
|
|
|
574
574
|
|
|
575
575
|
def ansible_vault_flag
|
|
576
576
|
debug(config[:ansible_vault_password_file])
|
|
577
|
-
config[:ansible_vault_password_file] ? "--vault-password-file=#{File.join(config[:root_path], File.basename(config[:ansible_vault_password_file]))}" : nil
|
|
577
|
+
config[:ansible_vault_password_file] ? "--vault-password-file=#{File.join(config[:root_path], File.basename(config[:ansible_vault_password_file]).reverse.chomp('.').reverse)}" : nil
|
|
578
578
|
end
|
|
579
579
|
|
|
580
580
|
def ansible_inventory_flag
|
data/provisioner_options.md
CHANGED
|
@@ -8,14 +8,14 @@ ansible_sudo | true | drives whether ansible-playbook is executed as root or as
|
|
|
8
8
|
ansible_platform | naively tries to determine | OS platform of server
|
|
9
9
|
require_ansible_repo | true | Set if using a ansible install from yum or apt repo
|
|
10
10
|
ansible_apt_repo | "ppa:ansible/ansible" | apt repo. see https://launchpad.net /~ansible/+archive/ubuntu/ansible or rquillo/ansible
|
|
11
|
-
ansible_yum_repo | https://download.fedoraproject.org /pub/epel/6/i386/epel-release-6-8.noarch.rpm | yum repo RH/Centos6
|
|
11
|
+
ansible_yum_repo | https://download.fedoraproject.org /pub/epel/6/i386/ epel-release-6-8.noarch.rpm | yum repo RH/Centos6
|
|
12
|
+
_for RH/Centos7 change to_ | http://dl.fedoraproject.org /pub/epel/7/x86_64/e/ epel-release-7-5.noarch.rpm |
|
|
12
13
|
ansible_binary_path | NULL | If specified this will override the location where kitchen tries to run ansible-playbook from. ie: (ansible_binary_path: /usr/local/bin )
|
|
13
|
-
_for RH/Centos7 change to_ | http://dl.fedoraproject.org /pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm |
|
|
14
14
|
enable_yum_epel | false | enable yum EPEL repo
|
|
15
|
-
ansible_sles_repo | http://download.opensuse.org/repositories /systemsmanagement/SLE_12/systemsmanagement.repo | zypper suse ansible repo
|
|
16
|
-
python_sles_repo | http://download.opensuse.org/repositories/devel
|
|
15
|
+
ansible_sles_repo | http://download.opensuse.org/repositories /systemsmanagement/SLE_12 /systemsmanagement.repo | zypper suse ansible repo
|
|
16
|
+
python_sles_repo | http://download.opensuse.org/repositories /devel:/languages:/python/SLE_12 /devel:languages:python.repo | zypper suse python repo
|
|
17
17
|
require_ansible_omnibus | false | Set if using omnibus ansible pip install
|
|
18
|
-
ansible_omnibus_url | https://raw.githubusercontent.com /neillturner/omnibus-ansible/master/ansible_install.sh | omnibus ansible install location.
|
|
18
|
+
ansible_omnibus_url | https://raw.githubusercontent.com /neillturner/omnibus-ansible /master/ansible_install.sh | omnibus ansible install location.
|
|
19
19
|
ansible_omnibus_remote_path | "/opt/ansible" | Server Installation location of an omnibus ansible install.
|
|
20
20
|
http_proxy | nil | use http proxy when installing puppet, packages and running puppet
|
|
21
21
|
https_proxy | nil | use https proxy when installing puppet, packages and running puppet
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-ansible
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.32
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Neill Turner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-11-
|
|
11
|
+
date: 2015-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|