diff options
author | Karel Kočí <cynerd@email.cz> | 2021-09-13 17:50:03 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2021-09-13 17:50:03 +0200 |
commit | 09036c49cb485eeb5db23907584fe8745758d505 (patch) | |
tree | 5e870507440ff30cdc5394d03c317973ec8600bf | |
parent | 2849c76c23146f651a70cdf0a70e6e98d4ea8ecf (diff) | |
download | openwrt-personal-pkgs-09036c49cb485eeb5db23907584fe8745758d505.tar.gz openwrt-personal-pkgs-09036c49cb485eeb5db23907584fe8745758d505.tar.bz2 openwrt-personal-pkgs-09036c49cb485eeb5db23907584fe8745758d505.zip |
updater: remove turris-prague and add dean
-rw-r--r-- | updater.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/updater.lua b/updater.lua index 5faa56b..3baa229 100644 --- a/updater.lua +++ b/updater.lua @@ -35,11 +35,12 @@ local bigclown = false local public = false uci_cursor:foreach("system", "system", function(s) hostname = s['hostname'] end) -if hostname == "turris-prague" then +if hostname == "dean" then tools = true vpn = true - public = true - Install("6to4") + Install("kmod-usb-net-asix-ax88179") + Install("kmod-usb-serial-pl2303") + Install("kmod-usb-serial-ftdi") elseif hostname == "turris-home" then tools = true vpn = true |