We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a01df commit a7c11d1Copy full SHA for a7c11d1
rpi/bootstrap.sh
@@ -9,6 +9,7 @@ SRC_VERSION=${1-}
9
function updateSystem() {
10
sudo apt-get update
11
sudo apt-get -y dist-upgrade
12
+ sudo apt-get -y install vim
13
}
14
15
function installService() {
@@ -62,6 +63,7 @@ function install_nwjs() {
62
63
64
function configurePi() {
65
sudo cp "${SCRIPT_DIR}/config.txt" /boot/config.txt
66
+ cp "${SCRIPT_DIR}/update.sh" ~/update.sh
67
68
69
updateSystem
rpi/update.sh
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
+wget -qO- https://github.com/RoboCup-SSL/ssl-status-board/releases/latest/download/bootstrap.tar.gz | tar xvz
3
+cd ssl-status-board || exit 1
4
+./bootstrap.sh
0 commit comments