diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/vyconf.proto | 8 | ||||
-rw-r--r-- | data/vyconfd.conf | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index d989fb3..a09d84a 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -117,6 +117,13 @@ message Request { message ExitConfigurationMode { } + message ReloadReftree { + // this is a temporary workaround for a bug with empty messages, and + // will be removed when the issue is resolved + optional int32 OnBehalfOf = 1; + } + + oneof msg { Status status = 1; SetupSession setup_session = 2; @@ -140,6 +147,7 @@ message Request { ExitConfigurationMode exit_configure = 20; Validate validate = 21; Teardown teardown = 22; + ReloadReftree reload_reftree = 23; } } diff --git a/data/vyconfd.conf b/data/vyconfd.conf index e0b16d0..bcde860 100644 --- a/data/vyconfd.conf +++ b/data/vyconfd.conf @@ -5,10 +5,13 @@ name = "vyconfd-minimal" data_dir = "/usr/share/vyos/vyconf" program_dir = "/usr/libexec/vyos" config_dir = "/usr/libexec/vyos/vyconf/config" +reftree_dir = "/usr/libexec/vyos/vyconf/reftree" # paths relative to config_dir primary_config = "config.boot" fallback_config = "config.failsafe" + +# paths relative to reftree_dir reference_tree = "reftree.cache" [vyconf] |