db7d74
#!/bin/sh
db7d74
db7d74
# More details about systemd generator:
db7d74
# http://www.freedesktop.org/wiki/Software/systemd/Generators/
db7d74
db7d74
. /usr/lib/kdump/kdump-lib.sh
db7d74
. /usr/lib/kdump/kdump-logger.sh
db7d74
db7d74
# If invokded with no arguments for testing purpose, output to /tmp to
db7d74
# avoid overriding the existing.
db7d74
dest_dir="/tmp"
db7d74
db7d74
if [ -n "$1" ]; then
db7d74
    dest_dir=$1
db7d74
fi
db7d74
db7d74
systemd_dir=/usr/lib/systemd/system
db7d74
kdump_wants=$dest_dir/kdump.service.wants
db7d74
db7d74
if is_ssh_dump_target; then
db7d74
    mkdir -p $kdump_wants
db7d74
    ln -sf $systemd_dir/network-online.target $kdump_wants/
db7d74
fi