2013-09-24 21:33:27 +08: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 19:35:59 +08:00
|
|
|
|
|
|
|
strip_comments()
|
|
|
|
{
|
2013-10-10 17:02:58 +08:00
|
|
|
echo $@ | sed -e 's/\(.*\)#.*/\1/'
|
2013-09-26 19:35:59 +08:00
|
|
|
}
|