diff options
author | Karel Kočí <cynerd@email.cz> | 2020-11-23 18:39:41 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-11-23 18:39:41 +0100 |
commit | c5fe7b2908c2bff3223c9f1288a6f1445f88cce4 (patch) | |
tree | cfe1bd4ec0a4303b608334193c8cb89e16d5e8b1 | |
parent | 59cbf758e1965f7127e337983a4f3e38f8233e4d (diff) | |
download | openwrt-personal-pkgs-c5fe7b2908c2bff3223c9f1288a6f1445f88cce4.tar.gz openwrt-personal-pkgs-c5fe7b2908c2bff3223c9f1288a6f1445f88cce4.tar.bz2 openwrt-personal-pkgs-c5fe7b2908c2bff3223c9f1288a6f1445f88cce4.zip |
updater.lua: add turris-adamkovi router
-rw-r--r-- | updater.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/updater.lua b/updater.lua index 0f8237c..602abe9 100644 --- a/updater.lua +++ b/updater.lua @@ -49,6 +49,11 @@ elseif hostname == "turris-home" then Install("transmission-daemon") elseif hostname:match("-home$") then tools = true +elseif hostname == "turris-adamkovi" then + tools = true + vpn = true + sentinel = true + Install("etherwake") elseif hostname:match("^work-") then tools = true end |