Fix some bugs and set NOPASSWD

This commit is contained in:
Joshua Boniface 2023-09-01 15:41:54 -04:00
parent 868d7fd5f4
commit b3c2d05277
1 changed files with 7 additions and 2 deletions

View File

@ -290,14 +290,19 @@ echo -n "Setting hostname... "
echo "${target_hostname}" | tee ${target}/etc/hostname >&2
echo "done."
echo -n "Setting NOPASSWD for sudo group... "
sed -i 's/^%sudo\tALL=(ALL:ALL) ALL/%sudo\tALL=(ALL:ALL) NOPASSWD: ALL/' ${target}/etc/sudoers
echo "done."
echo -n "Setting /etc/issue generator... "
mkdir -p ${target}/etc/network/if-up.d >&2
echo -e "#!/bin/sh
IP=\"\$( ip -4 addr show dev ${target_interface} | grep inet | awk '{ print \$2 }' | head -1 )\"
echo \"Debian GNU/Linux 10 \\\\n \\\\l
cat <<EOF >/etc/issue
Debian GNU/Linux 10 \\\\n \\\\l
Primary interface IP address: \$IP
\" > /etc/issue" | tee ${target}/etc/network/if-up.d/issue-gen >&2
EOF" | tee ${target}/etc/network/if-up.d/issue-gen >&2
chmod +x ${target}/etc/network/if-up.d/issue-gen 1>&2
echo "done."