mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 00:49:13 -06:00
16 lines
257 B
Text
16 lines
257 B
Text
|
#!/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
|
||
|
|