Accepting request 617102 from home:kbabioch:branches:systemsmanagement
- Update to 2.5.5 - Fixed the honouration of the no_log option with failed task iterations (CVE-2018-10855 boo#1097775) - Bufixes: - Changed the admin_users config option to not include "admin" by default as admin is frequently used for a non-privileged account - aws_s3 - add async support to the action plugin - aws_s3 - fix decrypting vault files - ec2_ami - cast the device_mapping volume size to an int - eos_logging - fix idempotency issues - cache plugins - A cache timeout of 0 means the cache will not expire. - ios_logging - fix idempotency issues - ios/nxos/eos_config - don't retrieve config in running_config when config is provided for diff - nxos_banner - fix multiline banner issue - nxos terminal plugin - fix output truncation - nxos_l3_interface - fix no switchport issue with loopback and svi interfaces - nxos_snapshot - fix compare_option - Applied spec-cleaner OBS-URL: https://build.opensuse.org/request/show/617102 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ansible?expand=0&rev=111
This commit is contained in:
parent
d1621d37a9
commit
a621514742
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:51f0c9411344741fb4f6dd8757e0fb6a52c4dcf53a1bfbbfee413e067e65001a
|
|
||||||
size 10100358
|
|
3
ansible-2.5.5.tar.gz
Normal file
3
ansible-2.5.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d7e5aae60c0e76c824bf8a410fe247b5c4afcfaee272f6283b4f996d237e365a
|
||||||
|
size 10150862
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 15 13:49:23 UTC 2018 - kbabioch@suse.com
|
||||||
|
|
||||||
|
- Update to 2.5.5
|
||||||
|
- Fixed the honouration of the no_log option with failed task iterations
|
||||||
|
(CVE-2018-10855 boo#1097775)
|
||||||
|
- Bufixes:
|
||||||
|
- Changed the admin_users config option to not include "admin" by default
|
||||||
|
as admin is frequently used for a non-privileged account
|
||||||
|
- aws_s3 - add async support to the action plugin
|
||||||
|
- aws_s3 - fix decrypting vault files
|
||||||
|
- ec2_ami - cast the device_mapping volume size to an int
|
||||||
|
- eos_logging - fix idempotency issues
|
||||||
|
- cache plugins - A cache timeout of 0 means the cache will not expire.
|
||||||
|
- ios_logging - fix idempotency issues
|
||||||
|
- ios/nxos/eos_config - don't retrieve config in running_config when config is provided for diff
|
||||||
|
- nxos_banner - fix multiline banner issue
|
||||||
|
- nxos terminal plugin - fix output truncation
|
||||||
|
- nxos_l3_interface - fix no switchport issue with loopback and svi interfaces
|
||||||
|
- nxos_snapshot - fix compare_option
|
||||||
|
- Applied spec-cleaner
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 24 15:32:37 UTC 2018 - lars@linux-schulserver.de
|
Tue Apr 24 15:32:37 UTC 2018 - lars@linux-schulserver.de
|
||||||
|
|
||||||
|
69
ansible.spec
69
ansible.spec
@ -2,8 +2,6 @@
|
|||||||
# spec file for package ansible
|
# spec file for package ansible
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright 2013 by Lars Vogdt
|
|
||||||
# Copyright 2014 by Boris Manojlovic
|
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -23,29 +21,40 @@
|
|||||||
%else
|
%else
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
|
%if 0%{?fedora} >= 18
|
||||||
|
%define __python python2
|
||||||
|
BuildRequires: python-devel
|
||||||
|
BuildRequires: python-setuptools
|
||||||
|
Requires: PyYAML
|
||||||
|
Requires: python-httplib2
|
||||||
|
Requires: python-jinja2
|
||||||
|
Requires: python-keyczar
|
||||||
|
Requires: python-paramiko
|
||||||
|
Requires: python-setuptools
|
||||||
|
Requires: python-six
|
||||||
|
Requires: sshpass
|
||||||
|
%endif
|
||||||
Name: ansible
|
Name: ansible
|
||||||
Version: 2.5.1
|
Version: 2.5.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Software automation engine
|
Summary: Software automation engine
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: http://ansible.com/
|
URL: http://ansible.com/
|
||||||
Source: https://releases.ansible.com/ansible/ansible-%{version}.tar.gz
|
Source: https://releases.ansible.com/ansible/ansible-%{version}.tar.gz
|
||||||
Source99: ansible-rpmlintrc
|
Source99: ansible-rpmlintrc
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
# SuSE/openSuSE
|
# SuSE/openSuSE
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python-setuptools
|
||||||
|
Requires: python-setuptools
|
||||||
Recommends: python-dnspython
|
Recommends: python-dnspython
|
||||||
Recommends: python-dopy
|
Recommends: python-dopy
|
||||||
Recommends: python-pywinrm
|
|
||||||
Recommends: sshpass
|
|
||||||
Recommends: python-httplib2
|
Recommends: python-httplib2
|
||||||
Recommends: python-keyczar
|
Recommends: python-keyczar
|
||||||
|
Recommends: python-pywinrm
|
||||||
Recommends: python-six
|
Recommends: python-six
|
||||||
Requires: python-setuptools
|
Recommends: sshpass
|
||||||
%if 0%{?suse_version} >= 01130
|
%if 0%{?suse_version} >= 01130
|
||||||
BuildRequires: python-Jinja2
|
BuildRequires: python-Jinja2
|
||||||
BuildRequires: python-PyYAML
|
BuildRequires: python-PyYAML
|
||||||
@ -58,7 +67,6 @@ Requires: python-passlib
|
|||||||
Requires: python-pycrypto >= 2.6
|
Requires: python-pycrypto >= 2.6
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# RHEL <=5
|
# RHEL <=5
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 5
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
||||||
BuildRequires: python26-devel
|
BuildRequires: python26-devel
|
||||||
@ -89,21 +97,8 @@ Requires: python-crypto
|
|||||||
%endif
|
%endif
|
||||||
# RHEL >=7
|
# RHEL >=7
|
||||||
%if 0%{?rhel} >= 7
|
%if 0%{?rhel} >= 7
|
||||||
Requires: python2-cryptography
|
|
||||||
BuildRequires: perl(Exporter)
|
BuildRequires: perl(Exporter)
|
||||||
%endif
|
Requires: python2-cryptography
|
||||||
%if 0%{?fedora} >= 18
|
|
||||||
BuildRequires: python-devel
|
|
||||||
BuildRequires: python-setuptools
|
|
||||||
Requires: PyYAML
|
|
||||||
Requires: python-httplib2
|
|
||||||
Requires: python-jinja2
|
|
||||||
Requires: python-keyczar
|
|
||||||
Requires: python-paramiko
|
|
||||||
Requires: python-setuptools
|
|
||||||
Requires: python-six
|
|
||||||
Requires: sshpass
|
|
||||||
%define __python %{__python2}
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -118,10 +113,10 @@ find . -name .git_keep -delete
|
|||||||
find contrib/ -type f -exec chmod 644 {} +
|
find contrib/ -type f -exec chmod 644 {} +
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__python} setup.py build
|
python setup.py build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/ansible/
|
mkdir -p %{buildroot}%{_sysconfdir}/ansible/
|
||||||
cp examples/hosts %{buildroot}%{_sysconfdir}/ansible/
|
cp examples/hosts %{buildroot}%{_sysconfdir}/ansible/
|
||||||
@ -131,8 +126,8 @@ cp -v docs/man/man1/*.1 %{buildroot}/%{_mandir}/man1/
|
|||||||
mkdir -p %{buildroot}/%{_datadir}/ansible
|
mkdir -p %{buildroot}/%{_datadir}/ansible
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%license COPYING
|
||||||
%doc COPYING *.rst contrib examples changelogs
|
%doc *.rst contrib examples changelogs
|
||||||
%{_bindir}/ansible
|
%{_bindir}/ansible
|
||||||
%{_bindir}/ansible-config
|
%{_bindir}/ansible-config
|
||||||
%{_bindir}/ansible-connection
|
%{_bindir}/ansible-connection
|
||||||
@ -144,15 +139,15 @@ mkdir -p %{buildroot}/%{_datadir}/ansible
|
|||||||
%{_bindir}/ansible-pull
|
%{_bindir}/ansible-pull
|
||||||
%{_bindir}/ansible-vault
|
%{_bindir}/ansible-vault
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
%{_mandir}/man1/ansible.1*
|
%{_mandir}/man1/ansible.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-config.1*
|
%{_mandir}/man1/ansible-config.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-console.1*
|
%{_mandir}/man1/ansible-console.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-doc.1*
|
%{_mandir}/man1/ansible-doc.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-galaxy.1*
|
%{_mandir}/man1/ansible-galaxy.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-inventory.1*
|
%{_mandir}/man1/ansible-inventory.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-playbook.1*
|
%{_mandir}/man1/ansible-playbook.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-pull.1*
|
%{_mandir}/man1/ansible-pull.1%{?ext_man}
|
||||||
%{_mandir}/man1/ansible-vault.1*
|
%{_mandir}/man1/ansible-vault.1%{?ext_man}
|
||||||
%dir %{_sysconfdir}/ansible
|
%dir %{_sysconfdir}/ansible
|
||||||
%config(noreplace) %{_sysconfdir}/ansible/ansible.cfg
|
%config(noreplace) %{_sysconfdir}/ansible/ansible.cfg
|
||||||
%config(noreplace) %{_sysconfdir}/ansible/hosts
|
%config(noreplace) %{_sysconfdir}/ansible/hosts
|
||||||
|
Loading…
Reference in New Issue
Block a user