serverConfig mkdirall

This commit is contained in:
Dan Ballard 2021-11-05 13:01:10 -07:00
parent 8ca01d15c3
commit 6788d7c415
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ func LoadCreateDefaultConfigFile(configDir, filename string, encrypted bool, pas
// if the encrypted flag is true the config is store encrypted by password
func CreateConfig(configDir, filename string, encrypted bool, password string) (*Config, error) {
log.Debugf("CreateConfig for server with configDir: %s\n", configDir)
os.Mkdir(configDir, 0700)
os.MkdirAll(configDir, 0700)
config := initDefaultConfig(configDir, filename, encrypted)
if encrypted {
key, _, err := v1.InitV1Directory(configDir, password)