Don't assume 5 nodes

This commit is contained in:
Jerome Petazzoni
2018-03-01 14:55:02 -06:00
parent 2a7498e30e
commit 34e9cc1944

View File

@@ -159,7 +159,7 @@ class: in-person
<!--
```bash
for N in $(seq 1 5); do
for N in $(awk '/node/{print $2}' /etc/hosts); do
ssh -o StrictHostKeyChecking=no node$N true
done
```