2013-04-27 21:33:17 +03:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
2012-03-05 12:15:24 -05:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
2012-04-13 16:27:56 -04:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
|
|
%endif
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
Name: ansible
|
2012-04-05 13:28:56 -04:00
|
|
|
Release: 1%{?dist}
|
2012-08-06 19:55:27 -04:00
|
|
|
Summary: SSH-based configuration management, deployment, and task execution system
|
2013-04-27 15:25:07 -04:00
|
|
|
Version: 1.2
|
2012-03-10 14:02:25 -05:00
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: GPLv3
|
2013-04-27 21:49:11 +03:00
|
|
|
Source0: http://ansible.cc/releases/%{name}-%{version}.tar.gz
|
|
|
|
Url: http://ansible.cc
|
2012-03-10 14:02:25 -05:00
|
|
|
|
2012-03-05 12:15:24 -05:00
|
|
|
BuildArch: noarch
|
2013-04-27 21:33:17 +03:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
2013-03-11 15:22:37 +00:00
|
|
|
BuildRequires: python26-devel
|
|
|
|
|
|
|
|
Requires: python26-PyYAML
|
|
|
|
Requires: python26-paramiko
|
|
|
|
Requires: python26-jinja2
|
|
|
|
%else
|
2012-04-13 16:27:56 -04:00
|
|
|
BuildRequires: python2-devel
|
2012-03-10 14:02:25 -05:00
|
|
|
|
2012-04-19 00:14:37 -04:00
|
|
|
Requires: PyYAML
|
2012-03-05 12:16:08 -05:00
|
|
|
Requires: python-paramiko
|
2012-03-05 20:09:03 -05:00
|
|
|
Requires: python-jinja2
|
2013-03-11 15:22:37 +00:00
|
|
|
%endif
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%description
|
2012-04-17 10:31:29 -04:00
|
|
|
|
|
|
|
Ansible is a radically simple model-driven configuration management,
|
|
|
|
multi-node deployment, and remote task execution system. Ansible works
|
|
|
|
over SSH and does not require any software or daemons to be installed
|
|
|
|
on remote nodes. Extension modules can be written in any language and
|
|
|
|
are transferred to managed machines automatically.
|
|
|
|
|
2012-11-04 13:37:38 +00:00
|
|
|
%package fireball
|
|
|
|
Summary: Ansible fireball transport support
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2013-04-27 21:33:17 +03:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
|
|
|
Requires: python26-keyczar
|
|
|
|
Requires: python26-zmq
|
|
|
|
%else
|
2012-11-04 13:37:38 +00:00
|
|
|
Requires: python-keyczar
|
|
|
|
Requires: python-zmq
|
2013-04-27 21:33:17 +03:00
|
|
|
%endif
|
2012-11-04 13:37:38 +00:00
|
|
|
|
|
|
|
%description fireball
|
|
|
|
|
|
|
|
Ansible can optionally use a 0MQ based transport mechanism, which is
|
|
|
|
considerably faster than the standard ssh mechanism when there are
|
|
|
|
multiple actions, but requires additional supporting packages.
|
|
|
|
|
|
|
|
%package node-fireball
|
|
|
|
Summary: Ansible fireball transport - node end support
|
|
|
|
Group: Development/Libraries
|
2013-04-27 21:33:17 +03:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
|
|
|
Requires: python26-keyczar
|
|
|
|
Requires: python26-zmq
|
|
|
|
%else
|
2012-11-04 13:37:38 +00:00
|
|
|
Requires: python-keyczar
|
|
|
|
Requires: python-zmq
|
2013-04-27 21:33:17 +03:00
|
|
|
%endif
|
2012-11-04 13:37:38 +00:00
|
|
|
|
|
|
|
%description node-fireball
|
|
|
|
|
|
|
|
Ansible can optionally use a 0MQ based transport mechanism, which has
|
|
|
|
additional requirements for nodes to use. This package includes those
|
|
|
|
requirements.
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%prep
|
2012-04-13 16:27:56 -04:00
|
|
|
%setup -q
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%build
|
2012-04-21 11:56:06 -04:00
|
|
|
%{__python} setup.py build
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%install
|
2012-04-21 11:56:06 -04:00
|
|
|
%{__python} setup.py install -O1 --root=$RPM_BUILD_ROOT
|
2012-03-05 12:15:24 -05:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
|
2012-03-10 16:19:33 -05:00
|
|
|
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
|
2012-08-13 19:17:14 -04:00
|
|
|
cp examples/ansible.cfg $RPM_BUILD_ROOT/etc/ansible/
|
2012-10-03 09:43:38 -04:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/{man1,man3}/
|
2012-03-13 11:08:10 -04:00
|
|
|
cp -v docs/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
|
2013-04-27 21:33:17 +03:00
|
|
|
cp -v docs/man/man3/*.3 $RPM_BUILD_ROOT/%{_mandir}/man3/
|
2012-03-13 11:08:10 -04:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/ansible
|
2013-04-29 19:24:41 +02:00
|
|
|
cp -rv library/* $RPM_BUILD_ROOT/%{_datadir}/ansible/
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2012-04-13 16:27:56 -04:00
|
|
|
%{python_sitelib}/ansible*
|
2012-03-05 12:15:24 -05:00
|
|
|
%{_bindir}/ansible*
|
2012-11-04 13:37:38 +00:00
|
|
|
%dir %{_datadir}/ansible
|
2013-04-29 19:24:41 +02:00
|
|
|
%{_datadir}/ansible/*/[a-eg-z]*
|
|
|
|
%{_datadir}/ansible/*/f[a-hj-z]*
|
|
|
|
%{_datadir}/ansible/*/file
|
2012-04-16 14:11:57 -04:00
|
|
|
%config(noreplace) %{_sysconfdir}/ansible
|
2013-04-27 21:33:17 +03:00
|
|
|
%doc README.md PKG-INFO COPYING
|
2012-04-13 16:27:56 -04:00
|
|
|
%doc %{_mandir}/man1/ansible*
|
2013-04-27 21:33:17 +03:00
|
|
|
%doc %{_mandir}/man3/ansible.[a-eg-z]*
|
|
|
|
%doc %{_mandir}/man3/ansible.f[a-hj-z]*
|
|
|
|
%doc %{_mandir}/man3/ansible.file*
|
2012-08-14 10:46:16 -04:00
|
|
|
%doc examples/playbooks
|
2012-03-05 12:15:24 -05:00
|
|
|
|
2012-11-04 13:37:38 +00:00
|
|
|
%files fireball
|
2013-04-29 19:24:41 +02:00
|
|
|
%{_datadir}/ansible/utilities/fireball
|
2013-04-27 21:33:17 +03:00
|
|
|
%doc %{_mandir}/man3/ansible.fireball.*
|
2012-11-04 13:37:38 +00:00
|
|
|
|
|
|
|
%files node-fireball
|
2013-04-27 21:33:17 +03:00
|
|
|
%doc README.md PKG-INFO COPYING
|
2012-11-04 13:37:38 +00:00
|
|
|
|
2012-03-05 12:15:24 -05:00
|
|
|
%changelog
|
2013-02-01 21:38:21 -05:00
|
|
|
|
2013-04-02 20:47:57 -04:00
|
|
|
* Tue Apr 2 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.2-0
|
2013-02-01 21:38:21 -05:00
|
|
|
* release pending
|
|
|
|
|
2013-04-02 20:47:57 -04:00
|
|
|
* Tue Apr 2 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.1-0
|
|
|
|
* Release 1.1
|
|
|
|
|
2013-02-01 21:34:34 -05:00
|
|
|
* Fri Feb 1 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.0-0
|
2013-02-01 21:38:21 -05:00
|
|
|
- Release 1.0
|
2012-11-30 22:06:25 -05:00
|
|
|
|
2012-11-30 22:03:31 -05:00
|
|
|
* Fri Nov 30 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.9-0
|
|
|
|
- Release 0.9
|
2012-10-19 21:01:57 -04:00
|
|
|
|
2012-10-19 20:46:59 -04:00
|
|
|
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.8-0
|
|
|
|
- Release of 0.8
|
2012-09-06 18:56:38 -04:00
|
|
|
|
2012-09-06 18:51:22 -04:00
|
|
|
* Thu Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.7-0
|
|
|
|
- Release of 0.7
|
2012-08-06 21:19:04 -04:00
|
|
|
|
|
|
|
* Mon Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.6-0
|
|
|
|
- Release of 0.6
|
|
|
|
|
2012-07-04 13:37:46 -04:00
|
|
|
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
|
2012-08-06 21:19:04 -04:00
|
|
|
- Release of 0.5
|
2012-05-25 16:43:16 -04:00
|
|
|
|
2012-05-23 20:23:46 -04:00
|
|
|
* Wed May 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.4-0
|
|
|
|
- Release of 0.4
|
|
|
|
|
|
|
|
* Mon Apr 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.3-1
|
2012-04-23 21:11:43 -04:00
|
|
|
- Release of 0.3
|
|
|
|
|
2012-04-03 09:51:05 -04:00
|
|
|
* Tue Apr 3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
|
|
|
|
- Release of 0.0.2
|
|
|
|
|
2012-03-10 14:02:25 -05:00
|
|
|
* Sat Mar 10 2012 <tbielawa@redhat.com> - 0.0.1-1
|
|
|
|
- Release of 0.0.1
|