mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-05 01:49:11 -07:00
b79cf7a7eb
Former-commit-id: 190f610ae1
15 lines
271 B
Bash
Executable file
15 lines
271 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 noconfig=sudo username=root hostname=kali noswap noautomount
|
|
END
|
|
|