26 lines
879 B
Diff
26 lines
879 B
Diff
From: Michal Suchanek <msuchanek@suse.de>
|
|
Date: Wed Jun 21 15:33:01 2017 +0200
|
|
Subject: Source save_dump.sh in systemd service.
|
|
References: bcs#1034169
|
|
Upstream: v0.8.17
|
|
Git-commit: b053165dd633978b1a78f6f7f993d34a62ee97c3
|
|
|
|
save_dump.sh is designed to be sourced and contains a number of toplevel return
|
|
statements. Bash will complain when these are executed unless the script is
|
|
sourced so source it to prevent useless noise.
|
|
|
|
Reported-by: Neil Brown <nfbrown@suse.com>
|
|
Signed-off-by: Michal Suchanek <msuchanek@suse.de>
|
|
|
|
--- kdump-0.8.16/init/kdump-save.service.in~ 2016-10-05 09:37:12.000000000 +0200
|
|
+++ kdump-0.8.16/init/kdump-save.service.in 2017-06-01 17:04:00.428710624 +0200
|
|
@@ -17,7 +17,7 @@
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
-ExecStart=/lib/kdump/save_dump.sh
|
|
+ExecStart=/bin/bash -c "source /lib/kdump/save_dump.sh"
|
|
StandardInput=tty
|
|
StandardOutput=tty
|
|
StandardError=tty
|