From 23a645ada56ef405a476db1f616c8389a4b6639d Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Thu, 7 May 2015 16:44:47 -0400 Subject: fixed build problems with openshift-ansible-inventory.spec --- inventory/openshift-ansible-inventory.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index 8267e16f6..c3b6aa8c8 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -25,8 +25,8 @@ mkdir -p %{buildroot}/usr/share/ansible/inventory/gce cp -p multi_ec2.py %{buildroot}/usr/share/ansible/inventory cp -p multi_ec2.yaml.example %{buildroot}/etc/ansible/multi_ec2.yaml -cp -p aws/ec2.py aws/ec2.ini %{buildroot}/usr/share/ansible/inventory/aws -cp -p gce/gce.py %{buildroot}/usr/share/ansible/inventory/gce +cp -p aws/hosts/ec2.py aws/hosts/ec2.ini %{buildroot}/usr/share/ansible/inventory/aws +cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce %files %config(noreplace) /etc/ansible/* -- cgit v1.2.3 From 9cf97c888698a6fda1a03f0eb5ae5bd74ee2408b Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Thu, 7 May 2015 16:48:25 -0400 Subject: Automatic commit of package [openshift-ansible-inventory] release [0.0.3-1]. --- inventory/openshift-ansible-inventory.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index c3b6aa8c8..f7ca67138 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Inventories Name: openshift-ansible-inventory -Version: 0.0.2 +Version: 0.0.3 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -37,6 +37,13 @@ cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce /usr/share/ansible/inventory/gce/gce.py* %changelog +* Thu May 07 2015 Thomas Wiest 0.0.3-1 +- fixed build problems with openshift-ansible-inventory.spec + (twiest@redhat.com) +- Allow option in multi_ec2 to set cache location. (kwoodson@redhat.com) +- Add ansible_connection=local to localhost in inventory (jdetiber@redhat.com) +- Adding refresh-cache option and cleanup for pylint. Also updated for + aws/hosts/ being added. (kwoodson@redhat.com) * Thu Mar 26 2015 Thomas Wiest 0.0.2-1 - added the ability to have a config file in /etc/openshift_ansible to multi_ec2.py. (twiest@redhat.com) -- cgit v1.2.3 From 4705af597cee2ff523aaede4bb2479c0fc6af430 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Thu, 7 May 2015 18:47:03 -0400 Subject: Automatic commit of package [openshift-ansible-inventory] release [0.0.4-1]. --- inventory/openshift-ansible-inventory.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index f7ca67138..e6bf37988 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Inventories Name: openshift-ansible-inventory -Version: 0.0.3 +Version: 0.0.4 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -37,6 +37,9 @@ cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce /usr/share/ansible/inventory/gce/gce.py* %changelog +* Thu May 07 2015 Thomas Wiest 0.0.4-1 +- Fixed a bug due to renaming of variables. (kwoodson@redhat.com) + * Thu May 07 2015 Thomas Wiest 0.0.3-1 - fixed build problems with openshift-ansible-inventory.spec (twiest@redhat.com) -- cgit v1.2.3 From 4e3972b89a0954b55e7b10917757e07b9e610c3a Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Tue, 12 May 2015 16:37:49 -0400 Subject: removed ec2.ini from the openshift-ansible-inventory.spec file so that we're not dictating what the ec2.ini file should look like. --- inventory/openshift-ansible-inventory.spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index e6bf37988..c1b066afb 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -25,7 +25,7 @@ mkdir -p %{buildroot}/usr/share/ansible/inventory/gce cp -p multi_ec2.py %{buildroot}/usr/share/ansible/inventory cp -p multi_ec2.yaml.example %{buildroot}/etc/ansible/multi_ec2.yaml -cp -p aws/hosts/ec2.py aws/hosts/ec2.ini %{buildroot}/usr/share/ansible/inventory/aws +cp -p aws/hosts/ec2.py %{buildroot}/usr/share/ansible/inventory/aws cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce %files @@ -33,7 +33,6 @@ cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce %dir /usr/share/ansible/inventory /usr/share/ansible/inventory/multi_ec2.py* /usr/share/ansible/inventory/aws/ec2.py* -%config(noreplace) /usr/share/ansible/inventory/aws/ec2.ini /usr/share/ansible/inventory/gce/gce.py* %changelog -- cgit v1.2.3 From 22a2616359ee1f167c85ec21bf416350706a7b5b Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Tue, 12 May 2015 16:47:07 -0400 Subject: Automatic commit of package [openshift-ansible-inventory] release [0.0.5-1]. --- inventory/openshift-ansible-inventory.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index c1b066afb..69bd255d4 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Inventories Name: openshift-ansible-inventory -Version: 0.0.4 +Version: 0.0.5 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -36,6 +36,11 @@ cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce /usr/share/ansible/inventory/gce/gce.py* %changelog +* Tue May 12 2015 Thomas Wiest 0.0.5-1 +- removed ec2.ini from the openshift-ansible-inventory.spec file so that we're + not dictating what the ec2.ini file should look like. (twiest@redhat.com) +- Added capability to pass in ec2.ini file. (kwoodson@redhat.com) + * Thu May 07 2015 Thomas Wiest 0.0.4-1 - Fixed a bug due to renaming of variables. (kwoodson@redhat.com) -- cgit v1.2.3 From 87e53ef9917556a331a81d8a01195c4ac8679bcd Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Wed, 13 May 2015 16:57:57 -0400 Subject: Automatic commit of package [openshift-ansible-inventory] release [0.0.6-1]. --- inventory/openshift-ansible-inventory.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index 69bd255d4..0fe25ff31 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Inventories Name: openshift-ansible-inventory -Version: 0.0.5 +Version: 0.0.6 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -36,6 +36,9 @@ cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce /usr/share/ansible/inventory/gce/gce.py* %changelog +* Wed May 13 2015 Thomas Wiest 0.0.6-1 +- Added support for grouping and a bug fix. (kwoodson@redhat.com) + * Tue May 12 2015 Thomas Wiest 0.0.5-1 - removed ec2.ini from the openshift-ansible-inventory.spec file so that we're not dictating what the ec2.ini file should look like. (twiest@redhat.com) -- cgit v1.2.3 From 1eda40ef2a4df9c5a6a728ac32d74ee1aaca2676 Mon Sep 17 00:00:00 2001 From: Kenny Woodson Date: Fri, 15 May 2015 14:15:08 -0400 Subject: Automatic commit of package [openshift-ansible-inventory] release [0.0.7-1]. --- inventory/openshift-ansible-inventory.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index 0fe25ff31..7ba6e3df1 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Inventories Name: openshift-ansible-inventory -Version: 0.0.6 +Version: 0.0.7 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -36,6 +36,9 @@ cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce /usr/share/ansible/inventory/gce/gce.py* %changelog +* Fri May 15 2015 Kenny Woodson 0.0.7-1 +- Making multi_ec2 into a library (kwoodson@redhat.com) + * Wed May 13 2015 Thomas Wiest 0.0.6-1 - Added support for grouping and a bug fix. (kwoodson@redhat.com) -- cgit v1.2.3 From 890f2c5d039a501966eedbf8c7bb7b7e9b50464a Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Fri, 15 May 2015 14:48:55 -0400 Subject: fixed the openshift-ansible-bin build --- inventory/openshift-ansible-inventory.spec | 1 + 1 file changed, 1 insertion(+) (limited to 'inventory/openshift-ansible-inventory.spec') diff --git a/inventory/openshift-ansible-inventory.spec b/inventory/openshift-ansible-inventory.spec index 7ba6e3df1..cd2332549 100644 --- a/inventory/openshift-ansible-inventory.spec +++ b/inventory/openshift-ansible-inventory.spec @@ -57,6 +57,7 @@ cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce - Add ansible_connection=local to localhost in inventory (jdetiber@redhat.com) - Adding refresh-cache option and cleanup for pylint. Also updated for aws/hosts/ being added. (kwoodson@redhat.com) + * Thu Mar 26 2015 Thomas Wiest 0.0.2-1 - added the ability to have a config file in /etc/openshift_ansible to multi_ec2.py. (twiest@redhat.com) -- cgit v1.2.3