Accepting request 528397 from home:lrupp:branches:systemsmanagement
- update to 2.4.0.0 (final) Major Changes + Support for Python-2.4 and Python-2.5 on the managed system's side was dropped. If you need to manage a system that ships with Python-2.4 or Python-2.5, you'll need to install Python-2.6 or better on the managed system or run Ansible-2.3 until you can upgrade the system. + New import/include keywords to replace the old bare include directives. The use of static: {yes|no} on such includes is now deprecated. [...] + Windows become_method: runas now works across all authtypes and will auto-elevate under UAC if WinRM user has "Act as part of the operating system" privilege - please refer to /usr/share/doc/packages/ansible/CHANGELOG.md for further changes - added ansible-inventory and ansible-config binaries and manpages - package contrib and examples directories in docdir - package all *md files as documentation for now - recommend the following new packages for (open)SUSE: + python-httplib2 + python-keyczar + python-six - enable/fix build for RHEL and Fedora by redefining __python2 and adding/enhancing the needed (build)requires if needed old: systemsmanagement/ansible new: home:lrupp:branches:systemsmanagement/ansible rev None Index: ansible.changes =================================================================== --- ansible.changes (revision 89) +++ ansible.changes (revision 7) @@ -1,4 +1,74 @@ ------------------------------------------------------------------- +Sat Sep 23 09:05:01 UTC 2017 - lars@linux-schulserver.de + +- update to 2.4.0.0 (final) + Major Changes + + Support for Python-2.4 and Python-2.5 on the managed system's side + was dropped. If you need to manage a system that ships with Python-2.4 + or Python-2.5, you'll need to install Python-2.6 or better on the + managed system or run Ansible-2.3 until you can upgrade the system. + + New import/include keywords to replace the old bare include directives. + The use of static: {yes|no} on such includes is now deprecated. + ++ Using import_* (import_playbook, import_tasks, import_role) directives are static. + ++ Using include_* (include_tasks, include_role) directives are dynamic. + This is done to avoid collisions and possible security issues as + facts come from the remote targets and they might be compromised. + + New order play level keyword that allows the user to change the + order in which Ansible processes hosts when dispatching tasks. + + Users can now set group merge priority for groups of the same depth + (parent child relationship), using the new ansible_group_priority variable, + when values are the same or don't exist it will fallback to the previous + sorting by name'. + + Inventory has been revamped: + ++ Inventory classes have been split to allow for better + management and deduplication + ++ Logic that each inventory source duplicated is now common and pushed + up to reconciliation + ++ VariableManager has been updated for better interaction with inventory + ++ Updated CLI with helper method to initialize base objects for plays + ++ New inventory plugins for creating inventory + ++ Old inventory formats are still supported via plugins + ++ Inline host_list is also an inventory plugin, an example alternative + advanced_host_list is also provided (it supports ranges) + ++ New configuration option to list enabled plugins and precedence + order: whitelist_inventory in ansible.cfg + ++ vars_plugins have been reworked, they are now run from Vars manager + and API has changed (need docs) + ++ Loading group_vars/host_vars is now a vars plugin and can be overridden + ++ It is now possible to specify mulitple inventory sources in the + command line (-i /etc/hosts1 -i /opt/hosts2) + ++ Inventory plugins can use the cache plugin (i.e. virtualbox) and + is affected by meta: refresh_inventory + ++ Group variable precedence is now configurable via new 'precedence' + option in ansible.cfg (needs docs) + ++ Improved warnings and error messages across the board + + Configuration has been changed from a hardcoded listing in the + constants module to dynamically loaded from yaml definitions + ++ Also added an ansible-config CLI to allow for listing config options + and dumping current config (including origin) + ++ TODO: build upon this to add many features detailed in ansible-config + proposal https://github.com/ansible/proposals/issues/35 + + Windows modules now support the use of multiple shared module_utils + files in the form of Powershell modules (.psm1), via + #Requires -Module Ansible.ModuleUtils.Whatever.psm1 + + Python module argument_spec now supports custom validation logic + by accepting a callable as the type argument. + + Windows become_method: runas now works across all authtypes and + will auto-elevate under UAC if WinRM user has "Act as part of the + operating system" privilege + - please refer to /usr/share/doc/packages/ansible/CHANGELOG.md for + further changes +- added ansible-inventory and ansible-config binaries and manpages +- package contrib and examples directories in docdir +- package all *md files as documentation for now +- recommend the following new packages for (open)SUSE: + + python-httplib2 + + python-keyczar + + python-six +- enable/fix build for RHEL and Fedora by redefining __python2 and + adding/enhancing the needed (build)requires if needed + +------------------------------------------------------------------- Tue Aug 8 17:06:10 UTC 2017 - michael@stroeder.com - update to 2.3.2.0 (final) Index: ansible.spec =================================================================== --- ansible.spec (revision 89) +++ ansible.spec (revision 7) @@ -24,7 +24,7 @@ BuildArch: noarch %endif Name: ansible -Version: 2.3.2.0 +Version: 2.4.0.0 Release: 0 Summary: Radically simple IT automation License: GPL-3.0 @@ -33,14 +33,19 @@ Source: https://releases.ansible.com/ansible/ansible-%{version}.tar.gz Source99: ansible-rpmlintrc BuildRoot: %{_tmppath}/%{name}-%{version}-build + +# SuSE/openSuSE %if 0%{?suse_version} BuildRequires: python-devel BuildRequires: python-setuptools -Requires: python-setuptools Recommends: python-dnspython Recommends: python-dopy Recommends: python-pywinrm Recommends: sshpass +Recommends: python-httplib2 +Recommends: python-keyczar +Recommends: python-six +Requires: python-setuptools %if 0%{?suse_version} >= 01130 BuildRequires: python-Jinja2 BuildRequires: python-PyYAML @@ -52,20 +57,52 @@ Requires: python-pycrypto >= 2.6 %endif %endif -# RHEL == 6 -%if 0%{?rhel} == 6 -Requires: python-crypto2.6 + +# RHEL <=5 +%if 0%{?rhel} && 0%{?rhel} <= 5 +BuildRequires: python26-devel +BuildRequires: python26-setuptools +Requires: python26-PyYAML +Requires: python26-httplib2 +Requires: python26-jinja2 +Requires: python26-keyczar +Requires: python26-paramiko +Requires: python26-setuptools +Requires: python26-six +Requires: sshpass %endif # RHEL > 5 %if 0%{?rhel} && 0%{?rhel} >= 5 BuildRequires: python-setuptools BuildRequires: python2-devel Requires: PyYAML +Requires: python-jinja2 +Requires: python-paramiko +Requires: python-setuptools +Requires: python-six +Requires: sshpass +%endif +# RHEL == 6 +%if 0%{?rhel} == 6 +Requires: python-crypto +%endif +# RHEL >=7 +%if 0%{?rhel} >= 7 +Requires: python2-cryptography +BuildRequires: perl(Exporter) +%endif +%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 %description @@ -76,12 +113,14 @@ %prep %setup -q -n ansible-%{version} +find . -name .git_keep -delete +find contrib/ -type f -exec chmod 644 {} \; %build -python setup.py build +%{__python} setup.py build %install -python setup.py install --prefix=%{_prefix} --root=%{buildroot} +%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} mkdir -p %{buildroot}%{_sysconfdir}/ansible/ cp examples/hosts %{buildroot}%{_sysconfdir}/ansible/ @@ -92,20 +131,24 @@ %files %defattr(-,root,root,-) -%doc COPYING README.md CHANGELOG.md +%doc COPYING *.md contrib examples %{_bindir}/ansible +%{_bindir}/ansible-config %{_bindir}/ansible-connection %{_bindir}/ansible-console -%{_bindir}/ansible-playbook -%{_bindir}/ansible-pull %{_bindir}/ansible-doc %{_bindir}/ansible-galaxy +%{_bindir}/ansible-inventory +%{_bindir}/ansible-playbook +%{_bindir}/ansible-pull %{_bindir}/ansible-vault %{python_sitelib}/* %{_mandir}/man1/ansible.1* +%{_mandir}/man1/ansible-config.1* %{_mandir}/man1/ansible-console.1* %{_mandir}/man1/ansible-doc.1* %{_mandir}/man1/ansible-galaxy.1* +%{_mandir}/man1/ansible-inventory.1* %{_mandir}/man1/ansible-playbook.1* %{_mandir}/man1/ansible-pull.1* %{_mandir}/man1/ansible-vault.1* Index: ansible-2.4.0.0.tar.gz =================================================================== Binary file ansible-2.4.0.0.tar.gz (revision 7) added Index: ansible-2.3.2.0.tar.gz =================================================================== Binary file ansible-2.3.2.0.tar.gz (revision 89) deleted OBS-URL: https://build.opensuse.org/request/show/528397 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ansible?expand=0&rev=90
This commit is contained in:
parent
89cda86ebf
commit
7fb97c17d4
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0563b425279422487f12616ef719f6e558373b258dcf47e548d119be8d3168eb
|
|
||||||
size 4319664
|
|
3
ansible-2.4.0.0.tar.gz
Normal file
3
ansible-2.4.0.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1a276fee7f72d4e6601a7994879e8467edb763dacc3e215258cfe71350b77c76
|
||||||
|
size 6623856
|
@ -1,3 +1,73 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 23 09:05:01 UTC 2017 - lars@linux-schulserver.de
|
||||||
|
|
||||||
|
- update to 2.4.0.0 (final)
|
||||||
|
Major Changes
|
||||||
|
+ Support for Python-2.4 and Python-2.5 on the managed system's side
|
||||||
|
was dropped. If you need to manage a system that ships with Python-2.4
|
||||||
|
or Python-2.5, you'll need to install Python-2.6 or better on the
|
||||||
|
managed system or run Ansible-2.3 until you can upgrade the system.
|
||||||
|
+ New import/include keywords to replace the old bare include directives.
|
||||||
|
The use of static: {yes|no} on such includes is now deprecated.
|
||||||
|
++ Using import_* (import_playbook, import_tasks, import_role) directives are static.
|
||||||
|
++ Using include_* (include_tasks, include_role) directives are dynamic.
|
||||||
|
This is done to avoid collisions and possible security issues as
|
||||||
|
facts come from the remote targets and they might be compromised.
|
||||||
|
+ New order play level keyword that allows the user to change the
|
||||||
|
order in which Ansible processes hosts when dispatching tasks.
|
||||||
|
+ Users can now set group merge priority for groups of the same depth
|
||||||
|
(parent child relationship), using the new ansible_group_priority variable,
|
||||||
|
when values are the same or don't exist it will fallback to the previous
|
||||||
|
sorting by name'.
|
||||||
|
+ Inventory has been revamped:
|
||||||
|
++ Inventory classes have been split to allow for better
|
||||||
|
management and deduplication
|
||||||
|
++ Logic that each inventory source duplicated is now common and pushed
|
||||||
|
up to reconciliation
|
||||||
|
++ VariableManager has been updated for better interaction with inventory
|
||||||
|
++ Updated CLI with helper method to initialize base objects for plays
|
||||||
|
++ New inventory plugins for creating inventory
|
||||||
|
++ Old inventory formats are still supported via plugins
|
||||||
|
++ Inline host_list is also an inventory plugin, an example alternative
|
||||||
|
advanced_host_list is also provided (it supports ranges)
|
||||||
|
++ New configuration option to list enabled plugins and precedence
|
||||||
|
order: whitelist_inventory in ansible.cfg
|
||||||
|
++ vars_plugins have been reworked, they are now run from Vars manager
|
||||||
|
and API has changed (need docs)
|
||||||
|
++ Loading group_vars/host_vars is now a vars plugin and can be overridden
|
||||||
|
++ It is now possible to specify mulitple inventory sources in the
|
||||||
|
command line (-i /etc/hosts1 -i /opt/hosts2)
|
||||||
|
++ Inventory plugins can use the cache plugin (i.e. virtualbox) and
|
||||||
|
is affected by meta: refresh_inventory
|
||||||
|
++ Group variable precedence is now configurable via new 'precedence'
|
||||||
|
option in ansible.cfg (needs docs)
|
||||||
|
++ Improved warnings and error messages across the board
|
||||||
|
+ Configuration has been changed from a hardcoded listing in the
|
||||||
|
constants module to dynamically loaded from yaml definitions
|
||||||
|
++ Also added an ansible-config CLI to allow for listing config options
|
||||||
|
and dumping current config (including origin)
|
||||||
|
++ TODO: build upon this to add many features detailed in ansible-config
|
||||||
|
proposal https://github.com/ansible/proposals/issues/35
|
||||||
|
+ Windows modules now support the use of multiple shared module_utils
|
||||||
|
files in the form of Powershell modules (.psm1), via
|
||||||
|
#Requires -Module Ansible.ModuleUtils.Whatever.psm1
|
||||||
|
+ Python module argument_spec now supports custom validation logic
|
||||||
|
by accepting a callable as the type argument.
|
||||||
|
+ Windows become_method: runas now works across all authtypes and
|
||||||
|
will auto-elevate under UAC if WinRM user has "Act as part of the
|
||||||
|
operating system" privilege
|
||||||
|
- please refer to /usr/share/doc/packages/ansible/CHANGELOG.md for
|
||||||
|
further changes
|
||||||
|
- added ansible-inventory and ansible-config binaries and manpages
|
||||||
|
- package contrib and examples directories in docdir
|
||||||
|
- package all *md files as documentation for now
|
||||||
|
- recommend the following new packages for (open)SUSE:
|
||||||
|
+ python-httplib2
|
||||||
|
+ python-keyczar
|
||||||
|
+ python-six
|
||||||
|
- enable/fix build for RHEL and Fedora by redefining __python2 and
|
||||||
|
adding/enhancing the needed (build)requires if needed
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 8 17:06:10 UTC 2017 - michael@stroeder.com
|
Tue Aug 8 17:06:10 UTC 2017 - michael@stroeder.com
|
||||||
|
|
||||||
|
63
ansible.spec
63
ansible.spec
@ -24,7 +24,7 @@
|
|||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
Name: ansible
|
Name: ansible
|
||||||
Version: 2.3.2.0
|
Version: 2.4.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Radically simple IT automation
|
Summary: Radically simple IT automation
|
||||||
License: GPL-3.0
|
License: GPL-3.0
|
||||||
@ -33,14 +33,19 @@ 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
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
# 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: python-pywinrm
|
||||||
Recommends: sshpass
|
Recommends: sshpass
|
||||||
|
Recommends: python-httplib2
|
||||||
|
Recommends: python-keyczar
|
||||||
|
Recommends: python-six
|
||||||
|
Requires: python-setuptools
|
||||||
%if 0%{?suse_version} >= 01130
|
%if 0%{?suse_version} >= 01130
|
||||||
BuildRequires: python-Jinja2
|
BuildRequires: python-Jinja2
|
||||||
BuildRequires: python-PyYAML
|
BuildRequires: python-PyYAML
|
||||||
@ -52,20 +57,52 @@ Requires: python-paramiko
|
|||||||
Requires: python-pycrypto >= 2.6
|
Requires: python-pycrypto >= 2.6
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
# RHEL == 6
|
|
||||||
%if 0%{?rhel} == 6
|
# RHEL <=5
|
||||||
Requires: python-crypto2.6
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
||||||
|
BuildRequires: python26-devel
|
||||||
|
BuildRequires: python26-setuptools
|
||||||
|
Requires: python26-PyYAML
|
||||||
|
Requires: python26-httplib2
|
||||||
|
Requires: python26-jinja2
|
||||||
|
Requires: python26-keyczar
|
||||||
|
Requires: python26-paramiko
|
||||||
|
Requires: python26-setuptools
|
||||||
|
Requires: python26-six
|
||||||
|
Requires: sshpass
|
||||||
%endif
|
%endif
|
||||||
# RHEL > 5
|
# RHEL > 5
|
||||||
%if 0%{?rhel} && 0%{?rhel} >= 5
|
%if 0%{?rhel} && 0%{?rhel} >= 5
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python-setuptools
|
||||||
BuildRequires: python2-devel
|
BuildRequires: python2-devel
|
||||||
Requires: PyYAML
|
Requires: PyYAML
|
||||||
|
Requires: python-jinja2
|
||||||
|
Requires: python-paramiko
|
||||||
|
Requires: python-setuptools
|
||||||
|
Requires: python-six
|
||||||
|
Requires: sshpass
|
||||||
|
%endif
|
||||||
|
# RHEL == 6
|
||||||
|
%if 0%{?rhel} == 6
|
||||||
|
Requires: python-crypto
|
||||||
|
%endif
|
||||||
|
# RHEL >=7
|
||||||
|
%if 0%{?rhel} >= 7
|
||||||
|
Requires: python2-cryptography
|
||||||
|
BuildRequires: perl(Exporter)
|
||||||
|
%endif
|
||||||
|
%if 0%{?fedora} >= 18
|
||||||
|
BuildRequires: python-devel
|
||||||
|
BuildRequires: python-setuptools
|
||||||
|
Requires: PyYAML
|
||||||
Requires: python-httplib2
|
Requires: python-httplib2
|
||||||
Requires: python-jinja2
|
Requires: python-jinja2
|
||||||
Requires: python-keyczar
|
Requires: python-keyczar
|
||||||
Requires: python-paramiko
|
Requires: python-paramiko
|
||||||
Requires: python-setuptools
|
Requires: python-setuptools
|
||||||
|
Requires: python-six
|
||||||
|
Requires: sshpass
|
||||||
|
%define __python %{__python2}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -76,12 +113,14 @@ like zero downtime rolling updates with load balancers.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n ansible-%{version}
|
%setup -q -n ansible-%{version}
|
||||||
|
find . -name .git_keep -delete
|
||||||
|
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/
|
||||||
@ -92,20 +131,24 @@ mkdir -p %{buildroot}/%{_datadir}/ansible
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYING README.md CHANGELOG.md
|
%doc COPYING *.md contrib examples
|
||||||
%{_bindir}/ansible
|
%{_bindir}/ansible
|
||||||
|
%{_bindir}/ansible-config
|
||||||
%{_bindir}/ansible-connection
|
%{_bindir}/ansible-connection
|
||||||
%{_bindir}/ansible-console
|
%{_bindir}/ansible-console
|
||||||
%{_bindir}/ansible-playbook
|
|
||||||
%{_bindir}/ansible-pull
|
|
||||||
%{_bindir}/ansible-doc
|
%{_bindir}/ansible-doc
|
||||||
%{_bindir}/ansible-galaxy
|
%{_bindir}/ansible-galaxy
|
||||||
|
%{_bindir}/ansible-inventory
|
||||||
|
%{_bindir}/ansible-playbook
|
||||||
|
%{_bindir}/ansible-pull
|
||||||
%{_bindir}/ansible-vault
|
%{_bindir}/ansible-vault
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
%{_mandir}/man1/ansible.1*
|
%{_mandir}/man1/ansible.1*
|
||||||
|
%{_mandir}/man1/ansible-config.1*
|
||||||
%{_mandir}/man1/ansible-console.1*
|
%{_mandir}/man1/ansible-console.1*
|
||||||
%{_mandir}/man1/ansible-doc.1*
|
%{_mandir}/man1/ansible-doc.1*
|
||||||
%{_mandir}/man1/ansible-galaxy.1*
|
%{_mandir}/man1/ansible-galaxy.1*
|
||||||
|
%{_mandir}/man1/ansible-inventory.1*
|
||||||
%{_mandir}/man1/ansible-playbook.1*
|
%{_mandir}/man1/ansible-playbook.1*
|
||||||
%{_mandir}/man1/ansible-pull.1*
|
%{_mandir}/man1/ansible-pull.1*
|
||||||
%{_mandir}/man1/ansible-vault.1*
|
%{_mandir}/man1/ansible-vault.1*
|
||||||
|
Loading…
Reference in New Issue
Block a user