mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
Restructure code tree
Root package now contains only initialization code and 'dummy' module. Each module now got its own package. Module packages are grouped by their main purpose (storage/, target/, auth/, etc). Shared code is placed in these "group" packages. Parser for module references in config is moved into config/module. Code shared by tests (mock modules, etc) is placed in testutils.
This commit is contained in:
parent
d4d807d6c7
commit
35c3b1c792
51 changed files with 961 additions and 2223 deletions
|
@ -1,39 +0,0 @@
|
|||
package maddy
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
var (
|
||||
defaultConfigDirectory = "/etc/maddy"
|
||||
defaultStateDirectory = "/var/lib/maddy"
|
||||
defaultLibexecDirectory = "/usr/lib/maddy"
|
||||
)
|
||||
|
||||
func ConfigDirectory() string {
|
||||
return defaultConfigDirectory
|
||||
}
|
||||
|
||||
func StateDirectory(globals map[string]interface{}) string {
|
||||
if dir := os.Getenv("MADDYSTATE"); dir != "" {
|
||||
return dir
|
||||
}
|
||||
|
||||
if val, ok := globals["statedir"]; ok && val.(string) != "" {
|
||||
return val.(string)
|
||||
}
|
||||
|
||||
return defaultStateDirectory
|
||||
}
|
||||
|
||||
func LibexecDirectory(globals map[string]interface{}) string {
|
||||
if dir := os.Getenv("MADDYLIBEXEC"); dir != "" {
|
||||
return dir
|
||||
}
|
||||
|
||||
if val, ok := globals["libexecdir"]; ok && val.(string) != "" {
|
||||
return val.(string)
|
||||
}
|
||||
|
||||
return defaultLibexecDirectory
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue