forked from pool/s390-tools
2fb5028b0b
- Added the following patches (bsc#1068538) * s390-tools-sles15-cpi-add-unit-install-section.patch * s390-tools-sles15-zipl-remove-invalid-dasdview-command-line-option.patch * s390-tools-sles15-ziomon-re-add-missing-line.patch - Modified s390-tools-sles15-zdev-Use-correct-path-to-vmcp-binary.patch to point to the correct line in the common.mk file. OBS-URL: https://build.opensuse.org/request/show/546824 OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=38
28 lines
864 B
Diff
28 lines
864 B
Diff
Subject: [PATCH] [BZ 160944] cpi: add missing Install section to service unit
|
|
From: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
|
|
|
|
Description: cpi: add missing Install section to service unit
|
|
Symptom: Enabling the cpi service unit fails because it
|
|
does not include information about where to install
|
|
it.
|
|
Problem: An install section is missing.
|
|
Solution: Add an install section.
|
|
Reproduction: Issue systemctl enable cpi.
|
|
Upstream-ID: -
|
|
Problem-ID: 160944
|
|
|
|
Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
|
|
---
|
|
systemd/cpi.service.in | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/systemd/cpi.service.in
|
|
+++ b/systemd/cpi.service.in
|
|
@@ -38,3 +38,6 @@ EnvironmentFile=/etc/sysconfig/cpi
|
|
#
|
|
# Sending data to the HMC/SE
|
|
ExecStart=@toolslib_path@/cpictl -e
|
|
+
|
|
+[Install]
|
|
+WantedBy=multi-user.target
|