kexec-tools/kdump-lib.sh

20 lines
236 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
}