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 e5517c2 commit d0a9b97Copy full SHA for d0a9b97
rpi/bootstrap.sh
@@ -10,6 +10,7 @@ SRC_VERSION=${1:-}
10
function updateSystem() {
11
sudo apt-get update
12
sudo apt-get -y dist-upgrade
13
+ sudo apt-get -y install vim
14
}
15
16
function installService() {
@@ -70,6 +71,7 @@ function install_nwjs() {
70
71
72
function configurePi() {
73
sudo cp "${SCRIPT_DIR}/config.txt" /boot/config.txt
74
+ cp "${SCRIPT_DIR}/update.sh" ~/update.sh
75
76
77
updateSystem
rpi/update.sh
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
+wget -qO- https://github.com/RoboCup-SSL/ssl-remote-control/releases/latest/download/bootstrap.tar.gz | tar xvz
3
+cd ssl-remote-control || exit 1
4
+./bootstrap.sh
0 commit comments