Skip to content

Commit 0b30604

Browse files
author
Slyke
committed
Added some more nodered modules. Removed override file. Added branch selection
1 parent bcb42c3 commit 0b30604

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.templates/nodered/build.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
66
"Use the [SPACEBAR] to select the nodes you want preinstalled" 20 78 12 -- \
77
"node-red-node-pi-gpiod" " " "ON" \
88
"node-red-dashboard" " " "ON" \
9+
"node-red-contrib-influxdb" " " "ON" \
10+
"node-red-contrib-boolean-logic" " " "ON" \
11+
"node-red-node-rbe" " " "ON" \
12+
"node-red-configurable-ping" " " "ON" \
913
"node-red-node-openweathermap" " " "OFF" \
14+
"node-red-contrib-discord" " " "OFF" \
15+
"node-red-node-email" " " "on" \
1016
"node-red-node-google" " " "OFF" \
1117
"node-red-node-emoncms" " " "OFF" \
1218
"node-red-node-geofence" " " "OFF" \
@@ -15,7 +21,6 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
1521
"node-red-node-smooth" " " "OFF" \
1622
"node-red-node-darksky" " " "OFF" \
1723
"node-red-node-sqlite" " " "OFF" \
18-
"node-red-contrib-influxdb" " " "ON" \
1924
"node-red-contrib-config" " " "OFF" \
2025
"node-red-contrib-grove" " " "OFF" \
2126
"node-red-contrib-diode" " " "OFF" \
@@ -29,7 +34,6 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
2934
"node-red-contrib-isonline" " " "OFF" \
3035
"node-red-contrib-npm" " " "OFF" \
3136
"node-red-contrib-file-function" " " "OFF" \
32-
"node-red-contrib-boolean-logic" " " "OFF" \
3337
"node-red-contrib-home-assistant-websocket" " " "OFF" \
3438
"node-red-contrib-blynk-ws" " " "OFF" \
3539
"node-red-contrib-owntracks" " " "OFF" \

compose-override.yml

Whitespace-only changes.

menu.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
#get path of menu correct
44
pushd ~/IOTstack
55

6+
CURRENT_BRANCH=${1:-$(git name-rev --name-only HEAD)}
7+
68
# Consts/vars
79
TMP_DOCKER_COMPOSE_YML=./.tmp/docker-compose.tmp.yml
810
DOCKER_COMPOSE_YML=./docker-compose.yml
@@ -602,7 +604,7 @@ case $mainmenu_selection in
602604
;;
603605
"update")
604606
echo "Pulling latest project file from Github.com ---------------------------------------------"
605-
git pull origin master
607+
git pull origin $CURRENT_BRANCH
606608
echo "git status ------------------------------------------------------------------------------"
607609
git status
608610
;;

0 commit comments

Comments
 (0)