summaryrefslogtreecommitdiff
path: root/src/services/vyos-hostsd
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-12-04 16:59:49 +0100
committerChristian Poessinger <christian@poessinger.com>2021-12-10 18:34:18 +0100
commit482384102acd0af95ff966448a5253538b58c957 (patch)
tree0e7172b72b3c2d87c701bc7acdbfcc9b44165d8b /src/services/vyos-hostsd
parenta99d31c730ae71467e6f82754fdd9412bcd633dc (diff)
downloadvyos-1x-482384102acd0af95ff966448a5253538b58c957.tar.gz
vyos-1x-482384102acd0af95ff966448a5253538b58c957.zip
T562: bugfix missing "," on variable listing
This prevented VyOS to actually boot as the configuration could not be loaded, as "system host-name" was unable to commit.
Diffstat (limited to 'src/services/vyos-hostsd')
-rwxr-xr-xsrc/services/vyos-hostsd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/vyos-hostsd b/src/services/vyos-hostsd
index 1e0b37efe..df9f18d2d 100755
--- a/src/services/vyos-hostsd
+++ b/src/services/vyos-hostsd
@@ -289,7 +289,7 @@ base_schema = Schema({
Required('op'): Any('add', 'delete', 'set', 'get', 'apply'),
'type': Any('name_servers',
'name_server_tags_recursor', 'name_server_tags_system',
- 'forward_zones', 'authoritative_zones' 'search_domains',
+ 'forward_zones', 'authoritative_zones', 'search_domains',
'hosts', 'host_name'),
'data': Any(list, dict),
'tag': str,