Correct syntax error in issue-gen output

This commit is contained in:
Joshua Boniface 2023-09-01 15:41:53 -04:00
parent c0df5935d2
commit 6c389f7413
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ echo "done."
echo -n "Setting /etc/issue generator... "
echo -e "#!/bin/sh
IP="\$( ip addr show dev ${target_interface} | grep inet | awk \'{ print \$2 }\' )"
IP="\$\( ip addr show dev ${target_interface} | grep inet | awk \'\{ print \$2 \}\' \)"
echo -e \"Debian GNU/Linux 10 \\n \\l\n\nPrimary interface IP address: \$IP\n\" > /etc/issue" | tee ${target}/etc/if-up.d/issue-gen >&2
chmod +x ${target}/etc/if-up.d/issue-gen 1>&2
echo "done."