mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
Rename 'state' and 'runtime' directives to 'state_dir' and 'runtime_dir'
maddy(1) was incorrect calling them 'statedir' and 'runtimedir'. Name with 'dir' is preferred since it is more explicit. Use of underscores is consistent with other directives.
This commit is contained in:
parent
c0a73bc3d0
commit
850ef87247
3 changed files with 6 additions and 6 deletions
|
@ -18,8 +18,8 @@ func findBlockInCfg(path, cfgBlock string) (root, block *config.Node, err error)
|
|||
defer f.Close()
|
||||
|
||||
globals := config.NewMap(nil, &config.Node{Children: nodes})
|
||||
globals.String("state", false, false, maddy.DefaultStateDirectory, &config.StateDirectory)
|
||||
globals.String("runtime", false, false, maddy.DefaultRuntimeDirectory, &config.RuntimeDirectory)
|
||||
globals.String("state_dir", false, false, maddy.DefaultStateDirectory, &config.StateDirectory)
|
||||
globals.String("runtime_dir", false, false, maddy.DefaultRuntimeDirectory, &config.RuntimeDirectory)
|
||||
|
||||
// We don't care about other directives, but permit them.
|
||||
globals.AllowUnknown()
|
||||
|
|
|
@ -127,13 +127,13 @@ can be used.
|
|||
|
||||
These directives applied for all configuration blocks that don't override it.
|
||||
|
||||
*Syntax*: statedir _path_ ++
|
||||
*Syntax*: state_dir _path_ ++
|
||||
*Default*: /var/lib/maddy
|
||||
|
||||
The path to the state directory. This directory will be used to store all
|
||||
persistent data and should be writable.
|
||||
|
||||
*Syntax*: runtimedir _path_ ++
|
||||
*Syntax*: runtime_dir _path_ ++
|
||||
*Default*: /run/maddy
|
||||
|
||||
The path to the runtime directory. Used for Unix sockets and other temporary
|
||||
|
|
4
maddy.go
4
maddy.go
|
@ -242,8 +242,8 @@ func ensureDirectoryWritable(path string) error {
|
|||
|
||||
func moduleMain(cfg []config.Node) error {
|
||||
globals := config.NewMap(nil, &config.Node{Children: cfg})
|
||||
globals.String("state", false, false, DefaultStateDirectory, &config.StateDirectory)
|
||||
globals.String("runtime", false, false, DefaultRuntimeDirectory, &config.RuntimeDirectory)
|
||||
globals.String("state_dir", false, false, DefaultStateDirectory, &config.StateDirectory)
|
||||
globals.String("runtime_dir", false, false, DefaultRuntimeDirectory, &config.RuntimeDirectory)
|
||||
globals.String("hostname", false, false, "", nil)
|
||||
globals.String("autogenerated_msg_domain", false, false, "", nil)
|
||||
globals.Custom("tls", false, false, nil, config.TLSDirective, nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue