Hi Bhupesh,
On 06/08/17 at 06:44pm, Bhupesh Sharma wrote:
Presently kdump-dep-generator.sh uses '/usr/lib/kdump/kdump-lib.sh' as the path to source the kdump-lib.sh helper script, whereas the rest of the kdump helper scripts use the convention '/lib/kdump/kdump-lib.sh'.
Use the later convention in kdump-dep-generator.sh as well.
Signed-off-by: Bhupesh Sharma bhsharma@redhat.com
kdump-dep-generator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kdump-dep-generator.sh b/kdump-dep-generator.sh index b6fab2dbe68c..e1ae1af9f244 100644 --- a/kdump-dep-generator.sh +++ b/kdump-dep-generator.sh @@ -3,7 +3,7 @@ # More details about systemd generator: # http://www.freedesktop.org/wiki/Software/systemd/Generators/
-. /usr/lib/kdump/kdump-lib.sh +. /lib/kdump/kdump-lib.sh
Fedora use /usr/lib by default, it is better to use /usr/lib https://fedoraproject.org/wiki/Features/UsrMove
# If invokded with no arguments for testing purpose, output to /tmp to
# avoid overriding the existing.
2.7.4 _______________________________________________ kexec mailing list -- kexec@lists.fedoraproject.org To unsubscribe send an email to kexec-leave@lists.fedoraproject.org
Thanks Dave