savecore.init at [bf6ae1479b]
Logged in as anonymous

File savecore.init artifact d49d844a3e part of check-in bf6ae1479b


# vim:ft=make:

DUMPDIR?=/var/crash
CRASHINFO_ENABLE?=no

savecore: dumpon
.if empty(${DUMPDEV:tl:Mno}) && exists(${DUMPDEV}) && exists(${DUMPDIR})
	: Saving coredump.
	savecore ${DUMPDIR} ${DUMPDEV}
.if empty(${CRASHINFO_ENABLE:tl:Mno})
	crashinfo -d ${DUMPDIR}
.endif
.endif