kdump-dep-generator: source kdump-lib-initramfs.sh instead
Currently kdump-dep-generator will source kdump-lib.sh. Notice kdump-dep-generator have #!/bin/sh so it should be POSIX, but kdump-lib.sh is a non-POSIX bash script. When Bash is configured to run in POSIX mode for #!/bin/sh scripts, it will fail with: /usr/lib/kdump/kdump-lib.sh: line 1042: syntax error near unexpected token `<' /usr/lib/kdump/kdump-lib.sh: line 1042: ` done < <( _crashkernel_parse "$ck")' This subshell call is easy to convert into a pipe but we should just source kdump-lib-initramfs.sh here, the only thing kdump-dep-generator needs is is_ssh_dump_target which is in kdump-lib-initramfs.sh, also prevents further POSIX violations. Signed-off-by: Kairui Song <kasong@tencent.com> Reviewed-by: Philipp Rudo <prudo@redhat.com>
This commit is contained in:
parent
97b3b962a9
commit
2974fa3f26
@ -3,7 +3,7 @@
|
|||||||
# More details about systemd generator:
|
# More details about systemd generator:
|
||||||
# http://www.freedesktop.org/wiki/Software/systemd/Generators/
|
# http://www.freedesktop.org/wiki/Software/systemd/Generators/
|
||||||
|
|
||||||
. /usr/lib/kdump/kdump-lib.sh
|
. /usr/lib/kdump/kdump-lib-initramfs.sh
|
||||||
. /usr/lib/kdump/kdump-logger.sh
|
. /usr/lib/kdump/kdump-logger.sh
|
||||||
|
|
||||||
# If invokded with no arguments for testing purpose, output to /tmp to
|
# If invokded with no arguments for testing purpose, output to /tmp to
|
||||||
|
Loading…
Reference in New Issue
Block a user