2013-09-24 13:33:27 +00:00
|
|
|
#!/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
|
|
|
|
}
|
2013-09-26 11:35:59 +00:00
|
|
|
|
|
|
|
strip_comments()
|
|
|
|
{
|
|
|
|
echo $1 | sed -e 's/\(.*\)#.*/\1/'
|
|
|
|
}
|