pentest-distro-builder/modules/live-build-config/kali-config/common/hooks/live/forensic-menu.binary
2020-01-29 16:45:43 -07:00

16 lines
257 B
Bash
Executable file

#!/bin/sh
if [ ! -d isolinux ]; then
cd binary
fi
cat >>isolinux/live.cfg <<END
label live-forensic
menu label Live (^forensic mode)
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live username=kali hostname=kali noswap noautomount
END