Changeset 481 for trunk/Install.sh


Ignore:
Timestamp:
Jul 18, 2015, 5:06:52 PM (9 years ago)
Author:
katerina
Message:

Enhancements and fixes for tickets #374, #375, #376, #377, #378, and #379.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Install.sh

    r112 r481  
    279279fi
    280280
    281 #------------------------------------------------------------
    282 #
    283 #  Kernel module
    284 #
    285 #------------------------------------------------------------
    286 
    287 KCHECK="no"
    288 
    289 if [ "x$I386_LINUX" = "xyes" ]; then
    290 
    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> $tmp
    297 
    298 
    299 mtest=$?
    300 
    301 if [ $mtest = -1 ]; then
    302     exit 1
    303 fi
    304 if [ $mtest = 0 ]; then
    305     mfile=`cat $tmp`
    306     for z in $mfile ; do
    307         cfgline="$cfgline --with-kcheck=$z"
    308     done
    309     KCHECK="yes"
    310 fi
    311 
    312 fi
    313281
    314282#------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.