Fix syntax error at end of installer
This commit is contained in:
parent
8ec7956730
commit
dba5b1a184
|
@ -352,7 +352,7 @@ set +o errexit
|
||||||
echo
|
echo
|
||||||
echo "Edit the /etc/network/interfaces file in the target before completing setup? [y/N]"
|
echo "Edit the /etc/network/interfaces file in the target before completing setup? [y/N]"
|
||||||
read edit_ifaces
|
read edit_ifaces
|
||||||
if [[ ${edit_ifaces} == 'y' or ${edit_ifaces} == 'Y' ]]; then
|
if [[ ${edit_ifaces} == 'y' || ${edit_ifaces} == 'Y' ]]; then
|
||||||
vim ${target}/etc/network/interfaces
|
vim ${target}/etc/network/interfaces
|
||||||
fi
|
fi
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in New Issue