Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit c5dece8

Browse files
authored
Merge pull request #72 from mnecas/fix_spec_files
Release 1.0.3
2 parents 175152d + 578a638 commit c5dece8

File tree

5 files changed

+26
-5
lines changed

5 files changed

+26
-5
lines changed

misc/packaging/ansible-runner-service.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%endif
55

66
Name: ansible-runner-service
7-
Version: 1.0.2
7+
Version: 1.0.3
88
Release: 1%{?dist}
99
Summary: RESTful API for ansible/ansible_runner execution
1010
Source0: https://github.com/pcuzner/%{name}/archive/%{name}-%{version}.tar.gz
@@ -75,6 +75,9 @@ install -m 0644 ./LICENSE.md %{buildroot}%{_docdir}/ansible-runner-service
7575
%{_docdir}/ansible-runner-service/*
7676

7777
%changelog
78+
* Thu Jun 4 2020 Martin Necas <[email protected]> 1.0.3-1
79+
- No change in this RPM
80+
7881
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
7982
- Allow playbook parallel execution.
8083
- Add artifacts removal.

misc/packaging/apache/ansible-runner-service.spec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global srcname ansible-runner-service
22

33
Name: %{srcname}
4-
Version: 1.0.2
4+
Version: 1.0.3
55
Release: 1%{?dist}
66
Summary: RESTful API for ansible/ansible_runner execution
77
Source0: https://github.com/ansible/%{name}/archive/%{name}-%{version}.tar.gz
@@ -74,6 +74,10 @@ install -m 644 ./ansible_runner_service.py %{buildroot}%{python3_sitelib}/runner
7474
%doc README.md
7575

7676
%changelog
77+
* Thu Jun 4 2020 Martin Necas <[email protected]> 1.0.3-1
78+
- Add logrotate configuration to purge old log files
79+
- Add psutil to dependencies
80+
7781
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
7882
- Allow playbook parallel execution.
7983
- Add artifacts removal.

misc/packaging/nginx/ansible-runner-service-nginx.spec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%endif
55

66
Name: ansible-runner-service
7-
Version: 1.0.2
7+
Version: 1.0.3
88
Release: 1%{?dist}
99
Summary: RESTful API for ansible/ansible_runner execution
1010
Source0: https://github.com/ansible/%{name}/archive/%{name}-%{version}.tar.gz
@@ -22,6 +22,7 @@ Requires: ansible-runner >= 1.3.2
2222
Requires: python-flask >= 1.0.2
2323
Requires: python2-flask-restful >= 0.3.5
2424
Requires: python2-cryptography
25+
Requires: python2-psutil
2526
Requires: openssl
2627
Requires: pyOpenSSL
2728
Requires: PyYAML
@@ -93,6 +94,9 @@ install -m 0644 ./misc/nginx/uwsgi.ini %{buildroot}%{_sysconfdir}/ansible-runner
9394

9495

9596
%changelog
97+
* Thu Jun 4 2020 Martin Necas <[email protected]> 1.0.3-1
98+
- Add psutil to dependencies
99+
96100
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
97101
- Allow playbook parallel execution.
98102
- Add artifacts removal.

packaging/gunicorn/ansible-runner-service.spec

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global srcname ansible-runner-service-dev
22

33
Name: %{srcname}
4-
Version: 1.0.2
4+
Version: 1.0.3
55
Release: 1%{?dist}
66
Summary: RESTful API for ansible/ansible_runner execution
77
Source0: https://github.com/ansible/%{name}/archive/%{name}-%{version}.tar.gz
@@ -69,6 +69,12 @@ install -m 644 ./ansible_runner_service.py %{buildroot}%{python3_sitelib}/runner
6969
mkdir -p %{buildroot}%{_unitdir}
7070
cp -r ./packaging/gunicorn/ansible-runner-service.service %{buildroot}%{_unitdir}
7171

72+
mkdir -p %{buildroot}/var/log/ovirt-engine
73+
touch %{buildroot}/var/log/ovirt-engine/ansible-runner-service.log
74+
75+
mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
76+
install -m 644 ./packaging/gunicorn/ansible-runner-service %{buildroot}%{_sysconfdir}/logrotate.d/ansible-runner-service
77+
7278
%files -n %{srcname}
7379
%{_bindir}/ansible_runner_service
7480
%{python3_sitelib}/*
@@ -83,6 +89,10 @@ cp -r ./packaging/gunicorn/ansible-runner-service.service %{buildroot}%{_unitdir
8389
%doc README.md
8490

8591
%changelog
92+
* Thu Jun 4 2020 Martin Necas <[email protected]> 1.0.3-1
93+
- Add logrotate configuration to purge old log files
94+
- Add psutil to dependencies
95+
8696
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
8797
- Allow playbook parallel execution.
8898
- Add artifacts removal.

runner_service/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
InventoryCorruptError,
1313
InventoryOperationNotAllowed)
1414

15-
__version__ = '1.0.2'
15+
__version__ = '1.0.3'

0 commit comments

Comments
 (0)