Date: Sun, 9 Aug 2015 23:36:46 GMT From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r289500 - soc2013/def/crashdump-head/etc/rc.d Message-ID: <201508092336.t79NakWp011017@socsvn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: def Date: Sun Aug 9 23:36:46 2015 New Revision: 289500 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=289500 Log: Use kern.features.ekcd sysctl to verify if kernel has EKCD. Modified: soc2013/def/crashdump-head/etc/rc.d/cryptcore Modified: soc2013/def/crashdump-head/etc/rc.d/cryptcore ============================================================================== --- soc2013/def/crashdump-head/etc/rc.d/cryptcore Sun Aug 9 23:34:52 2015 (r289499) +++ soc2013/def/crashdump-head/etc/rc.d/cryptcore Sun Aug 9 23:36:46 2015 (r289500) @@ -16,7 +16,7 @@ cryptcore_check() { - sysctl -Nq security.ekcd.enable >/dev/null + sysctl -Nq kern.features.ekcd >/dev/null if [ $? -ne 0 ]; then err 1 "Kernel is missing encrypted kernel crash dumps." fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508092336.t79NakWp011017>