From 17c69ff4a4b8b905e2db4dac6c9c0e8d1212b23f Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 16 Mar 2015 16:50:02 -0400 Subject: Automatic commit of package [openshift-ansible-cmds] release [0.0.1-1]. --- bin/openshift-ansible-bin.spec | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 bin/openshift-ansible-bin.spec (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec new file mode 100644 index 000000000..2b83a7d0b --- /dev/null +++ b/bin/openshift-ansible-bin.spec @@ -0,0 +1,34 @@ +Summary: OpenShift Operations files for mirror +Name: openshift-ansible-bin +Version: 0.0.1 +Release: 1%{?dist} +License: ASL 2.0 +URL: https://github.com/openshift/openshift-ansible +Source0: %{name}-%{version}.tar.gz +Requires: python2 +BuildRequires: python2-devel +BuildArch: noarch + +%description +Scripts to make it nicer when working with hosts that are defined only by metadata. + +%prep +%setup -q + +%build + +%install +mkdir -p %{buildroot}/usr/bin +mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible +mkdir -p %{buildroot}/etc/bash_completion.d + +cp -p ossh oscp opssh %{buildroot}/usr/bin +cp -p awsutil.py %{buildroot}%{python_sitelib}/openshift_ansible +cp -p ossh_bash_completion %{buildroot}/etc/bash_completion.d + +%files +/usr/bin/* +%{python_sitelib}/openshift_ansible/* +/etc/bash_completion.d/* + +%changelog -- cgit v1.2.3 From 96729907e131f0cef6f37bcca062e9b092e67d29 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Tue, 24 Mar 2015 13:15:53 -0400 Subject: Added spec files and tito configs. --- bin/openshift-ansible-bin.spec | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 2b83a7d0b..7ca0cbe9d 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,11 +1,11 @@ -Summary: OpenShift Operations files for mirror +Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -Version: 0.0.1 +Version: 0.0.0 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible Source0: %{name}-%{version}.tar.gz -Requires: python2 +Requires: python2, openshift-ansible-inventory BuildRequires: python2-devel BuildArch: noarch @@ -18,17 +18,17 @@ Scripts to make it nicer when working with hosts that are defined only by metada %build %install -mkdir -p %{buildroot}/usr/bin +mkdir -p %{buildroot}%{_bindir} mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible mkdir -p %{buildroot}/etc/bash_completion.d -cp -p ossh oscp opssh %{buildroot}/usr/bin +cp -p ossh oscp opssh %{buildroot}%{_bindir} cp -p awsutil.py %{buildroot}%{python_sitelib}/openshift_ansible cp -p ossh_bash_completion %{buildroot}/etc/bash_completion.d %files -/usr/bin/* -%{python_sitelib}/openshift_ansible/* +%{_bindir}/* +%{python_sitelib}/openshift_ansible/ /etc/bash_completion.d/* %changelog -- cgit v1.2.3 From e7797109bb0cc162dce6f78ed57343a832330910 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Tue, 24 Mar 2015 16:14:53 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.1-1]. --- bin/openshift-ansible-bin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 7ca0cbe9d..86b1d4fdf 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -Version: 0.0.0 +Version: 0.0.1 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -32,3 +32,6 @@ cp -p ossh_bash_completion %{buildroot}/etc/bash_completion.d /etc/bash_completion.d/* %changelog +* Tue Mar 24 2015 Thomas Wiest 0.0.1-1 +- new package built with tito + -- cgit v1.2.3 From b1b462f4db3ce1a26cfc251895d5f8fe2e15c484 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 30 Mar 2015 11:25:03 -0400 Subject: added config file support to opssh, ossh, and oscp --- bin/openshift-ansible-bin.spec | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 86b1d4fdf..1bd486bff 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -21,15 +21,19 @@ Scripts to make it nicer when working with hosts that are defined only by metada mkdir -p %{buildroot}%{_bindir} mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible mkdir -p %{buildroot}/etc/bash_completion.d +mkdir -p %{buildroot}/etc/openshift_ansible cp -p ossh oscp opssh %{buildroot}%{_bindir} cp -p awsutil.py %{buildroot}%{python_sitelib}/openshift_ansible cp -p ossh_bash_completion %{buildroot}/etc/bash_completion.d +cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshift_ansible.conf + %files %{_bindir}/* %{python_sitelib}/openshift_ansible/ /etc/bash_completion.d/* +%config(noreplace) /etc/openshift_ansible/ %changelog * Tue Mar 24 2015 Thomas Wiest 0.0.1-1 -- cgit v1.2.3 From 1ba0619575f23e880d431ec2a15b9c02bfc5e3a9 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 30 Mar 2015 14:51:41 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.2-1]. --- bin/openshift-ansible-bin.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 1bd486bff..38e0a0d59 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -Version: 0.0.1 +Version: 0.0.2 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -36,6 +36,8 @@ cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshif %config(noreplace) /etc/openshift_ansible/ %changelog +* Mon Mar 30 2015 Thomas Wiest 0.0.2-1 +- added config file support to opssh, ossh, and oscp (twiest@redhat.com) * Tue Mar 24 2015 Thomas Wiest 0.0.1-1 - new package built with tito -- cgit v1.2.3 From 24ce165d9ca662f9a0438e658197ff41fd02ae03 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 30 Mar 2015 17:46:21 -0400 Subject: created a python package named openshift_ansible --- bin/openshift-ansible-bin.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 38e0a0d59..349cd3059 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -24,7 +24,7 @@ mkdir -p %{buildroot}/etc/bash_completion.d mkdir -p %{buildroot}/etc/openshift_ansible cp -p ossh oscp opssh %{buildroot}%{_bindir} -cp -p awsutil.py %{buildroot}%{python_sitelib}/openshift_ansible +cp -p openshift_ansible/* %{buildroot}%{python_sitelib}/openshift_ansible cp -p ossh_bash_completion %{buildroot}/etc/bash_completion.d cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshift_ansible.conf -- cgit v1.2.3 From 4a6d1c328d92047fcd924dce821613c8579f1745 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 30 Mar 2015 18:13:27 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.3-1]. --- bin/openshift-ansible-bin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 349cd3059..7cca5ffba 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -Version: 0.0.2 +Version: 0.0.3 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -36,6 +36,9 @@ cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshif %config(noreplace) /etc/openshift_ansible/ %changelog +* Mon Mar 30 2015 Thomas Wiest 0.0.3-1 +- created a python package named openshift_ansible (twiest@redhat.com) + * Mon Mar 30 2015 Thomas Wiest 0.0.2-1 - added config file support to opssh, ossh, and oscp (twiest@redhat.com) * Tue Mar 24 2015 Thomas Wiest 0.0.1-1 -- cgit v1.2.3 From 5f0b024fedc826722306c159bbf91a3c74ec3b4e Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Tue, 31 Mar 2015 16:49:13 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.4-1]. --- bin/openshift-ansible-bin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 7cca5ffba..f87002456 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -Version: 0.0.3 +Version: 0.0.4 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -36,6 +36,9 @@ cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshif %config(noreplace) /etc/openshift_ansible/ %changelog +* Tue Mar 31 2015 Thomas Wiest 0.0.4-1 +- Fixed when tag was missing and added opssh completion (kwoodson@redhat.com) + * Mon Mar 30 2015 Thomas Wiest 0.0.3-1 - created a python package named openshift_ansible (twiest@redhat.com) -- cgit v1.2.3 From 4fe5e4645c099c69254b0e99081732a8b6af577a Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Wed, 8 Apr 2015 11:50:11 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.5-1]. --- bin/openshift-ansible-bin.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index f87002456..f509bdd79 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -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,10 @@ cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshif %config(noreplace) /etc/openshift_ansible/ %changelog +* Wed Apr 08 2015 Thomas Wiest 0.0.5-1 +- fixed the opssh default output behavior to be consistent with pssh. Also + fixed a bug in how directories are named for --outdir and --errdir. + (twiest@redhat.com) * Tue Mar 31 2015 Thomas Wiest 0.0.4-1 - Fixed when tag was missing and added opssh completion (kwoodson@redhat.com) -- cgit v1.2.3 From f0ae24d8346ba8cafe6c8f9890433789b5367078 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Thu, 9 Apr 2015 15:20:31 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.6-1]. --- bin/openshift-ansible-bin.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index f509bdd79..695aebc28 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -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,10 @@ cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshif %config(noreplace) /etc/openshift_ansible/ %changelog +* Thu Apr 09 2015 Thomas Wiest 0.0.6-1 +- fixed bug where opssh would throw an exception if pssh returned a non-zero + exit code (twiest@redhat.com) + * Wed Apr 08 2015 Thomas Wiest 0.0.5-1 - fixed the opssh default output behavior to be consistent with pssh. Also fixed a bug in how directories are named for --outdir and --errdir. -- cgit v1.2.3 From 6b74f852258b51c1558aff3967288a57ca4efb86 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Fri, 10 Apr 2015 16:30:32 -0400 Subject: added ohi --- bin/openshift-ansible-bin.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 695aebc28..876bca1d7 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -23,7 +23,7 @@ mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible mkdir -p %{buildroot}/etc/bash_completion.d mkdir -p %{buildroot}/etc/openshift_ansible -cp -p ossh oscp opssh %{buildroot}%{_bindir} +cp -p ossh oscp opssh ohi %{buildroot}%{_bindir} cp -p openshift_ansible/* %{buildroot}%{python_sitelib}/openshift_ansible cp -p ossh_bash_completion %{buildroot}/etc/bash_completion.d -- cgit v1.2.3 From 1cb4ba976599e6e4fd18568f7dc46b58db5b4161 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 13 Apr 2015 10:07:39 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.7-1]. --- bin/openshift-ansible-bin.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 876bca1d7..04af4546c 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -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,11 @@ cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshif %config(noreplace) /etc/openshift_ansible/ %changelog +* Mon Apr 13 2015 Thomas Wiest 0.0.7-1 +- added the ability to run opssh and ohi on all hosts in an environment, as + well as all hosts of the same host-type regardless of environment + (twiest@redhat.com) +- added ohi (twiest@redhat.com) * Thu Apr 09 2015 Thomas Wiest 0.0.6-1 - fixed bug where opssh would throw an exception if pssh returned a non-zero exit code (twiest@redhat.com) -- cgit v1.2.3 From eb64f8f819139e3901b032a4f2bfa53a3189531e Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 13 Apr 2015 16:42:36 -0400 Subject: Automatic commit of package [openshift-ansible-bin] release [0.0.8-1]. --- bin/openshift-ansible-bin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin/openshift-ansible-bin.spec') diff --git a/bin/openshift-ansible-bin.spec b/bin/openshift-ansible-bin.spec index 04af4546c..c7db6f684 100644 --- a/bin/openshift-ansible-bin.spec +++ b/bin/openshift-ansible-bin.spec @@ -1,6 +1,6 @@ Summary: OpenShift Ansible Scripts for working with metadata hosts Name: openshift-ansible-bin -Version: 0.0.7 +Version: 0.0.8 Release: 1%{?dist} License: ASL 2.0 URL: https://github.com/openshift/openshift-ansible @@ -36,6 +36,9 @@ cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshif %config(noreplace) /etc/openshift_ansible/ %changelog +* Mon Apr 13 2015 Thomas Wiest 0.0.8-1 +- fixed bug in opssh where it wouldn't actually run pssh (twiest@redhat.com) + * Mon Apr 13 2015 Thomas Wiest 0.0.7-1 - added the ability to run opssh and ohi on all hosts in an environment, as well as all hosts of the same host-type regardless of environment -- cgit v1.2.3