Adding man pages to spec file
BZ: 1952568 Signed-off-by: Eduardo Otubo <otubo@redhat.com>
This commit is contained in:
parent
f3523f3923
commit
8045190bad
@ -1,6 +1,6 @@
|
|||||||
Name: cloud-init
|
Name: cloud-init
|
||||||
Version: 21.3
|
Version: 21.3
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Cloud instance init scripts
|
Summary: Cloud instance init scripts
|
||||||
License: ASL 2.0 or GPLv3
|
License: ASL 2.0 or GPLv3
|
||||||
URL: http://launchpad.net/cloud-init
|
URL: http://launchpad.net/cloud-init
|
||||||
@ -125,6 +125,12 @@ cp -p %{SOURCE1} $RPM_BUILD_ROOT/%{_tmpfilesdir}/%{name}.conf
|
|||||||
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/rsyslog.d
|
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/rsyslog.d
|
||||||
cp -p tools/21-cloudinit.conf $RPM_BUILD_ROOT/%{_sysconfdir}/rsyslog.d/21-cloudinit.conf
|
cp -p tools/21-cloudinit.conf $RPM_BUILD_ROOT/%{_sysconfdir}/rsyslog.d/21-cloudinit.conf
|
||||||
|
|
||||||
|
# installing man pages
|
||||||
|
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1/
|
||||||
|
for man in cloud-id.1 cloud-init.1 cloud-init-per.1; do
|
||||||
|
install -c -m 0644 doc/man/${man} ${RPM_BUILD_ROOT}%{_mandir}/man1/${man}
|
||||||
|
chmod -x ${RPM_BUILD_ROOT}%{_mandir}/man1/*
|
||||||
|
done
|
||||||
|
|
||||||
%check
|
%check
|
||||||
python3 -m pytest tests/unittests
|
python3 -m pytest tests/unittests
|
||||||
@ -145,6 +151,7 @@ python3 -m pytest tests/unittests
|
|||||||
%license LICENSE LICENSE-Apache2.0 LICENSE-GPLv3
|
%license LICENSE LICENSE-Apache2.0 LICENSE-GPLv3
|
||||||
%doc ChangeLog
|
%doc ChangeLog
|
||||||
%doc doc/*
|
%doc doc/*
|
||||||
|
%{_mandir}/man1/*
|
||||||
%config(noreplace) %{_sysconfdir}/cloud/cloud.cfg
|
%config(noreplace) %{_sysconfdir}/cloud/cloud.cfg
|
||||||
%dir %{_sysconfdir}/cloud/cloud.cfg.d
|
%dir %{_sysconfdir}/cloud/cloud.cfg.d
|
||||||
%config(noreplace) %{_sysconfdir}/cloud/cloud.cfg.d/*.cfg
|
%config(noreplace) %{_sysconfdir}/cloud/cloud.cfg.d/*.cfg
|
||||||
@ -177,6 +184,9 @@ python3 -m pytest tests/unittests
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 08 2021 Eduardo Otubo <otubo@redhat.com> - 21.3-2
|
||||||
|
- Adding man pages [bz#1952568]
|
||||||
|
|
||||||
* Thu Sep 02 2021 Eduardo Otubo <otubo@redhat.com> - 21.3-1
|
* Thu Sep 02 2021 Eduardo Otubo <otubo@redhat.com> - 21.3-1
|
||||||
- Updated to 20.4 [bz#2000540]
|
- Updated to 20.4 [bz#2000540]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user