14 lines
314 B
Bash
14 lines
314 B
Bash
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "$0 viirb-id"
|
|
echo " viirb-id: number in decimal format"
|
|
exit 1
|
|
fi
|
|
|
|
id=$1; shift
|
|
|
|
./viirb-1-connect-flash-latest-openwrt.sh eth0 192.168.61.1
|
|
# reboot may take longer / rewriting the flash
|
|
sleep 120
|
|
./viirb-2-configure-fully-after-upgrade.sh 192.168.61.1 "$id"
|