ee524473c8
Add function strip_comments into kdump-lib.sh, since it's used by several files. Signed-off-by: Wade Mealing <wmealing@redhat.com> Signed-off-by: Baoquan He <bhe@redhat.com> Acked-by: Vivek Goyal <vgoyal@redhat.com>
25 lines
297 B
Bash
Executable File
25 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Kdump common functions
|
|
#
|
|
|
|
is_ssh_dump_target()
|
|
{
|
|
grep -q "^ssh[[:blank:]].*@" /etc/kdump.conf
|
|
}
|
|
|
|
is_nfs_dump_target()
|
|
{
|
|
grep -q "^nfs" /etc/kdump.conf
|
|
}
|
|
|
|
is_raw_dump_target()
|
|
{
|
|
grep -q "^raw" /etc/kdump.conf
|
|
}
|
|
|
|
strip_comments()
|
|
{
|
|
echo $1 | sed -e 's/\(.*\)#.*/\1/'
|
|
}
|