cat>"$SCRIPT"<<EOF#!/bin/sh -efu. install2-init-functions# don't override the script start message on the same lineecho "Ensuring that all the necesary system groups exist"echo '/usr/share/install3/default-groups/etc/alterator/auth/user-groups/etc/alterator/auth/admin-groups' \| while read LIST; do [ -s "\$destdir\$LIST" ] || continue for GROUP in \$(cat"\$destdir\$LIST"); do exec_chroot groupadd -r "\$GROUP" &>/dev/null ||: donedoneEOFchmod +x "$SCRIPT"