fix: Change conn-check syntax

Using the stock `recipe.json`, I encountered some syntax errors around
the conn-check;

```bash
wget -q --spider cloudflare.comif [ $? != 0 ]; thenecho 'No internet connection!'exit 1export DEBIAN_FRONTEND=noninteractive
```

where it should look like:

```bash
wget -q --spider cloudflare.com
if [ $? != 0 ]; then
echo 'No internet connection!'exit 1
fi

export DEBIAN_FRONTEND=noninteractive
```
main
Adam Israel 2 years ago
parent 4d693bff04
commit 3b295d4d04

@ -87,10 +87,11 @@ class Processor:
f.write("exit 0\n") f.write("exit 0\n")
# connection test # connection test
f.write("wget -q --spider cloudflare.com") f.write("wget -q --spider cloudflare.com\n")
f.write("if [ $? != 0 ]; then") f.write("if [ $? != 0 ]; then\n")
f.write("echo 'No internet connection!'") f.write("echo 'No internet connection!'\n")
f.write("exit 1") f.write("exit 1\n")
f.write("fi\n")
for command in commands: for command in commands:
if command.startswith("!nextBoot"): if command.startswith("!nextBoot"):

Loading…
Cancel
Save