This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
ovirt-ansible-engine-setup.spec.in
109 lines (83 loc) · 3.56 KB
/
ovirt-ansible-engine-setup.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
%global rolename engine-setup
%global roleprefix ovirt.
%global roleprefix_legacy_uppercase oVirt.
%global ansible_roles_dir ansible/roles
Name: @PACKAGE_NAME@
Summary: Ansible role to install required packages for oVirt Engine deployment, generate answerfile and run engine-setup with it.
Version: @RPM_VERSION@
Release: @RPM_RELEASE@%{?release_suffix}%{?dist}
Source0: http://resources.ovirt.org/pub/src/@PACKAGE_NAME@/@PACKAGE_NAME@-@PACKAGE_VERSION@.tar.gz
License: ASL 2.0
Group: Virtualization/Management
BuildArch: noarch
Url: http://www.ovirt.org
Requires: ansible >= 2.9.0
%description
This Ansible role installs required packages for oVirt Engine deployment,
generates answerfile and runs engine-setup with it.
%pretrans -p <lua>
-- Remove the legacy directory before installing the symlink. This is known issue in RPM:
-- https://fedoraproject.org/wiki/Packaging:Directory_Replacement
path_uppercase = "%{_datadir}/%{ansible_roles_dir}/%{roleprefix_legacy_uppercase}%{rolename}"
st = posix.stat(path_uppercase)
if st and st.type == "directory" then
os.execute('rm -rf "'..path_uppercase..'"')
end
%prep
%setup -c -q
%build
%install
export PKG_DATA_DIR_ORIG=%{_datadir}/%{ansible_roles_dir}/%{roleprefix}%{rolename}
export PKG_DATA_DIR=%{buildroot}$PKG_DATA_DIR_ORIG
export PKG_DOC_DIR=%{buildroot}%{_pkgdocdir}
export ROLENAME_LEGACY_UPPERCASE=%{buildroot}%{_datadir}/%{ansible_roles_dir}/%{roleprefix_legacy_uppercase}%{rolename}
sh build.sh install
%files
%{_datadir}/%{ansible_roles_dir}/%{roleprefix}%{rolename}
%{_datadir}/%{ansible_roles_dir}/%{roleprefix_legacy_uppercase}%{rolename}
%doc README.md
%doc examples/
%license LICENSE
%changelog
* Tue May 12 2020 Martin Necas <mnecas@redhat.com> - 1.2.4-1
- Add engine-config.
- Clarify README.md.
* Wed Apr 8 2020 Martin Necas <mnecas@redhat.com> - 1.2.3-1
- Add pre-install checks.
- Update ovirt_engine_setup_offline when upgrading packages.
- Remove ovirt_engine_setup_update_all_packages variable.
* Tue Mar 3 2020 Martin Necas <mnecas@redhat.com> - 1.2.2-1
- Add apache config.
* Mon Dec 2 2019 Martin Necas <mnecas@redhat.com> - 1.2.1-1
- Add build for el8.
* Mon Nov 25 2019 Martin Necas <mnecas@redhat.com> - 1.2.0-1
- Bump ansible to version 2.9.0.
* Tue Mar 12 2019 Ondra Machacek <omachace@redhat.com> - 1.1.9-1
- Avoid warnings on ansible 2.8.
- Added new answer for cinderlib.
- Change answer to yes in answerfile.
* Fri Feb 22 2019 Ondra Machacek <omachace@redhat.com> - 1.1.8-1
- Get ready for delegate_to.
- Add wait_running_tasks option for upgrade.
* Wed Jan 16 2019 Ondra Machacek <omachace@redhat.com> - 1.1.7-1
- Add option to perform upgrade.
* Fri Nov 30 2018 Ondra Machacek <omachace@redhat.com> - 1.1.6-1
- Require Ansible 2.7.2.
- Support ovirt.engine-setup name.
- update_only has an effect only if state is latest.
- Fix command for update ovirt*setup*.
- Add answerfiles for 4.3.
* Thu Oct 04 2018 Ondra Machacek <omachace@redhat.com> - 1.1.5-1
- Add vacuum option when upgrading.
* Fri Aug 31 2018 Ondra Machacek <omachace@redhat.com> - 1.1.4-1
- Set false as default for ovirt_engine_setup_use_remote_answer_file.
* Thu Aug 30 2018 Ondra Machacek <omachace@redhat.com> - 1.1.3-1
- Add '--offline' option.
- Add answerfile-path-on-remote option.
- Require Ansible 2.5.
* Wed Apr 11 2018 Ondra Machacek <omachace@redhat.com> - 1.1.2-1
- Change ovirt_engine_setup_product_type parameter.
* Thu Apr 5 2018 Ondra Machacek <omachace@redhat.com> - 1.1.1-1
- Remove 3.6 and 4.0 from supported versions of this role.
* Thu Dec 07 2017 Katerina Koukiou <kkoukiou@redhat.com> - 1.1.0-1
- Initial release