Changeset 481 for trunk/Install.sh
- Timestamp:
- Jul 18, 2015, 5:06:52 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Install.sh
r112 r481 279 279 fi 280 280 281 #------------------------------------------------------------282 #283 # Kernel module284 #285 #------------------------------------------------------------286 287 KCHECK="no"288 289 if [ "x$I386_LINUX" = "xyes" ]; then290 291 $dialog \292 --title "Kernel module rootkit detection" \293 --backtitle "Samhain $VERSION" \294 --inputbox "SAMHAIN can detect kernel module rootkits if compiled with support\nfor this. If you want to enable this option, please give the path\nto your System.map file, else choose CANCEL.\n\nNOTE: this option will require root privileges for at least one\ncommand during compilation (to read from /dev/kmem)." \295 16 75 "/boot/System.map" \296 2> $tmp297 298 299 mtest=$?300 301 if [ $mtest = -1 ]; then302 exit 1303 fi304 if [ $mtest = 0 ]; then305 mfile=`cat $tmp`306 for z in $mfile ; do307 cfgline="$cfgline --with-kcheck=$z"308 done309 KCHECK="yes"310 fi311 312 fi313 281 314 282 #------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.