diff options
author | Karel Kočí <cynerd@email.cz> | 2020-05-30 11:50:05 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-05-30 11:50:05 +0200 |
commit | 8f4ed24f438b1fb1d308b4d33f9be0cf0cb5cad5 (patch) | |
tree | f7711695aca9940387606e1310b968abbec53b66 | |
parent | 3d78a068cbe7ce0eccf65491aef2d235d31fae99 (diff) | |
download | openwrt-personal-pkgs-8f4ed24f438b1fb1d308b4d33f9be0cf0cb5cad5.tar.gz openwrt-personal-pkgs-8f4ed24f438b1fb1d308b4d33f9be0cf0cb5cad5.tar.bz2 openwrt-personal-pkgs-8f4ed24f438b1fb1d308b4d33f9be0cf0cb5cad5.zip |
updater.lua: accept all home routers
-rw-r--r-- | updater.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater.lua b/updater.lua index 03ba163..2695fd9 100644 --- a/updater.lua +++ b/updater.lua @@ -47,7 +47,7 @@ elseif hostname == "turris-home" then vpn = true sentinel = true Install("transmission-daemon-openssl") -elseif hostname == "mox-home" then +elseif hostname:match("-home$") then tools = true elseif hostname:match("^work-") then tools = true |