diff options
author | Daniil Baturin <daniil@baturin.org> | 2016-12-14 10:21:27 +0600 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2016-12-14 10:21:27 +0600 |
commit | 42307e6b1a240f6378ab309b45ee308e97b5ff1a (patch) | |
tree | c9ac6bdbeb68e422ef78429195654676675a3833 /data/examples/vyconfd.conf | |
parent | a3c11884b97e89e93ac55f47c0d9c412b645ba5d (diff) | |
download | vyconf-42307e6b1a240f6378ab309b45ee308e97b5ff1a.tar.gz vyconf-42307e6b1a240f6378ab309b45ee308e97b5ff1a.zip |
T210: use TOML for the vyconf config file.
Add an example of the file too.
Diffstat (limited to 'data/examples/vyconfd.conf')
-rw-r--r-- | data/examples/vyconfd.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/data/examples/vyconfd.conf b/data/examples/vyconfd.conf new file mode 100644 index 0000000..85a4523 --- /dev/null +++ b/data/examples/vyconfd.conf @@ -0,0 +1,17 @@ +[appliance] + +name = "Test Appliance" + +data_dir = "/usr/share/testappliance" +program_dir = "/usr/libexec/testappliance" +config_dir = "/etc/testappliance" + +# paths relative to config_dir +primary_config = "config.boot" +fallback_config = "config.failsafe" + +[vyconf] + +socket = "/var/run/vyconfd.sock" +pid_file = "/var/run/vyconfd.pid" +log_file = "/var/log/vyconfd.log" |