unix/fiss-linux

etc/stop.d/90-kexec.sh in master
Repositories | Summary | Log | Files | LICENSE

90-kexec.sh (224B) download


1if [ -z "$VIRTUALIZATION" ]; then
2    if [ -e /run/fiss/reboot ] && command -v kexec >/dev/null; then
3        msg "Triggering kexec..."
4        kexec -e 2>/dev/null
5        # not reached when kexec was successful.
6    fi
7fi