2019-01-16 19:32:16 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
|
|
|
|
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get upgrade -y
|
2019-01-28 17:19:49 +00:00
|
|
|
sudo apt-get install -y dnsmasq hostapd screen curl python3-pip python3-setuptools python3-wheel mosquitto nodejs haveged
|
2019-01-16 19:32:16 +00:00
|
|
|
|
2019-01-21 17:44:00 +00:00
|
|
|
sudo pip3 install paho-mqtt pyaes tornado
|
2019-01-16 19:32:16 +00:00
|
|
|
|
|
|
|
pushd scripts/smartconfig
|
|
|
|
npm i
|
|
|
|
popd
|
|
|
|
|
|
|
|
echo "Ready to start upgrade"
|