diff options
Diffstat (limited to 'personal-pkgs-repo/files')
-rw-r--r-- | personal-pkgs-repo/files/updater.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/personal-pkgs-repo/files/updater.lua b/personal-pkgs-repo/files/updater.lua index 4993750..1b274e7 100644 --- a/personal-pkgs-repo/files/updater.lua +++ b/personal-pkgs-repo/files/updater.lua @@ -31,11 +31,13 @@ Package("personal-pkgs-repo", { replan = "finished" }) local tools = false local vpn = false +local bigclown = false uci_cursor:foreach("system", "system", function(s) hostname = s['hostname'] end) if hostname == "turris-prague" then tools = true vpn = true + bigclown = true Install("6to4") elseif hostname == "turris-home" then tools = true @@ -53,3 +55,6 @@ if vpn then Install("luci-app-openvpn", "openvpn-openssl") Install("luci-app-wireguard", "wireguard") end +if bigclown then + Install("bigclown-gateway", "bigclown-mqtt2influxdb", "bigclown-control-tool") +end |