diff --git a/simple-cdd/disc-end-hook b/simple-cdd/disc-end-hook index 3c48f3a..95916b9 100755 --- a/simple-cdd/disc-end-hook +++ b/simple-cdd/disc-end-hook @@ -10,18 +10,25 @@ ARCHES=$5 cd $CDDIR +fix_branding() { + sed -i -e 's|Debian GNU/Linux|Kali Linux|g' \ + -e 's|Kali GNU/Linux|Kali Linux|g' \ + -e 's|Debian kali-rolling|Kali Rolling|g' \ + -e 's|Debian|Kali|g' \ + -e 's|DEBIAN|KALI|g' \ + "$@" +} + # Rebrand Debian into Kali -# The theme doesn't exist on arm64... -if [ "$ARCHES" != "arm64" ]; then -sed -i -e 's|Debian GNU/Linux|Kali Linux|g' \ - -e 's|Kali GNU/Linux|Kali Linux|g' \ - -e 's|Debian kali-rolling|Kali Rolling|g' \ - -e 's|Debian|Kali|g' \ - -e 's|DEBIAN|KALI|g' \ - ../boot$DISKNUM/isolinux/menu.cfg \ - ../boot$DISKNUM/isolinux/*.txt \ - boot/grub/theme/* \ - autorun.inf +if [ -e ../boot$DISKNUM/isolinux/menu.cfg ]; then + fix_branding ../boot$DISKNUM/isolinux/menu.cfg \ + ../boot$DISKNUM/isolinux/*.txt +fi +if [ -d boot/grub/theme ] && [ -s boot/grub/theme ]; then + fix_branding boot/grub/theme/* +fi +if [ -e autorun.inf ]; then + fix_branding autorun.inf fi # Replace Debian specific documentation