Message ID | 20210504143128.16456-1-olaf@aepfle.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v1] tools: handle missing xencommons in xen-init-dom0.service | expand |
On 04/05/2021 15:31, Olaf Hering wrote: > sysconfig files are not mandatory. > Adjust xen-init-dom0.service to handle a missing sysconfig file by > prepending a dash to the to-be-sourced filename. > > Signed-off-by: Olaf Hering <olaf@aepfle.de> Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
diff --git a/tools/hotplug/Linux/systemd/xen-init-dom0.service.in b/tools/hotplug/Linux/systemd/xen-init-dom0.service.in index beed3126c6..98779b8507 100644 --- a/tools/hotplug/Linux/systemd/xen-init-dom0.service.in +++ b/tools/hotplug/Linux/systemd/xen-init-dom0.service.in @@ -7,7 +7,7 @@ ConditionPathExists=/proc/xen/capabilities [Service] Type=oneshot RemainAfterExit=true -EnvironmentFile=@CONFIG_DIR@/@CONFIG_LEAF_DIR@/xencommons +EnvironmentFile=-@CONFIG_DIR@/@CONFIG_LEAF_DIR@/xencommons ExecStartPre=/bin/grep -q control_d /proc/xen/capabilities ExecStart=@LIBEXEC_BIN@/xen-init-dom0 $XEN_DOM0_UUID
sysconfig files are not mandatory. Adjust xen-init-dom0.service to handle a missing sysconfig file by prepending a dash to the to-be-sourced filename. Signed-off-by: Olaf Hering <olaf@aepfle.de> --- tools/hotplug/Linux/systemd/xen-init-dom0.service.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)