8 lines
176 B
Bash
Executable file
8 lines
176 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
for machine in "raspberrypi3" "raspberrypi2" "raspberrypi" "qemux86" "qemux86-64" "intel-nuc"
|
|
do
|
|
./create_homeassistant.sh -m $machine "$@" &
|
|
done
|
|
wait
|