b05bad2e19
This commit is a complement for the change in the stx-tools repo (link: https://review.openstack.org/#/c/651340/), the upgrade is required to fix the CVE-2018-15688. The fix was done in Jan 2019 by the community and requires the update of systemd packages. System-config needs to be updated in order to be aligned with the new version of systemd-219-62.el7_6.5. systemd-config.spec: Update 'BuildRequires' value for the new systemd version. update-package-versioning-for-TIS-format.patch: Update 'Release' value for the new version of systemd. 0703-fix-build-error-for-CentOS7.6.patch: Update process_http_upload function in order to support the new type of value '-ENOBUFS' and changes in the index file. srpm_path: Update the 'mirror' value with the new systemd version. Change-Id: I8f69532833c216f7a369f1b0596dc6607b0f2a7c Closes-Bug: #1820756 Depends-On: I3fd97d9dabe2350a7af887a0c7de26ec95f7a7d9 Signed-off-by: Mawrer Ramirez <mawrer.a.ramirez.martinez@intel.com>
61 lines
1.8 KiB
RPMSpec
61 lines
1.8 KiB
RPMSpec
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (C) 2019 Intel Corporation
|
|
#
|
|
Summary: StarlingX systemd Configuration File
|
|
Name: systemd-config
|
|
Version: 1.0
|
|
Release: %{tis_patch_ver}%{?_tis_dist}
|
|
License: Apache-2.0
|
|
Group: config-files
|
|
Packager: StarlingX
|
|
URL: unknown
|
|
Source: %name-%version.tar.gz
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: systemd = 219-62.el7_6.5
|
|
Requires: systemd
|
|
|
|
%define debug_package %{nil}
|
|
|
|
%description
|
|
StarlingX systemd configuration file
|
|
|
|
%prep
|
|
|
|
%setup
|
|
|
|
%build
|
|
|
|
%install
|
|
install -d %{buildroot}%{_datadir}/starlingx
|
|
install -m644 60-persistent-storage.rules %{buildroot}%{_datadir}/starlingx/60-persistent-storage.rules
|
|
install -m644 journald.conf %{buildroot}%{_datadir}/starlingx/journald.conf
|
|
install -m644 systemd.conf.tmpfiles.d %{buildroot}%{_datadir}/starlingx/systemd.conf.tmpfiles.d
|
|
install -m644 tmp.conf.tmpfiles.d %{buildroot}%{_datadir}/starlingx/tmp.conf.tmpfiles.d
|
|
install -m644 tmp.mount %{buildroot}%{_datadir}/starlingx/tmp.mount
|
|
|
|
%post
|
|
if [ $1 -eq 1 ] ; then
|
|
cp -f %{_datadir}/starlingx/60-persistent-storage.rules %{_udevrulesdir}/
|
|
chmod 644 %{_udevrulesdir}/60-persistent-storage.rules
|
|
cp -f %{_datadir}/starlingx/journald.conf %{_sysconfdir}/systemd
|
|
chmod 644 %{_sysconfdir}/systemd/journald.conf
|
|
cp -f %{_datadir}/starlingx/systemd.conf.tmpfiles.d %{_usr}/lib/tmpfiles.d/systemd.conf
|
|
chmod 644 %{_usr}/lib/tmpfiles.d/systemd.conf
|
|
cp -f %{_datadir}/starlingx/tmp.conf.tmpfiles.d %{_usr}/lib/tmpfiles.d/tmp.conf
|
|
chmod 644 %{_usr}/lib/tmpfiles.d/tmp.conf
|
|
cp -f %{_datadir}/starlingx/tmp.mount %{_unitdir}/
|
|
chmod 644 %{_unitdir}/tmp.mount
|
|
fi
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%license LICENSE
|
|
%{_datadir}/starlingx/60-persistent-storage.rules
|
|
%{_datadir}/starlingx/journald.conf
|
|
%{_datadir}/starlingx/systemd.conf.tmpfiles.d
|
|
%{_datadir}/starlingx/tmp.conf.tmpfiles.d
|
|
%{_datadir}/starlingx/tmp.mount
|