Create server data directory when not existing.
authorSebastien Douheret <sebastien.douheret@iot.bzh>
Thu, 30 Nov 2017 10:15:14 +0000 (11:15 +0100)
committerSebastien Douheret <sebastien.douheret@iot.bzh>
Thu, 30 Nov 2017 10:15:14 +0000 (11:15 +0100)
lib/xdsconfig/config.go
lib/xdsconfig/data.go

index 0201d40..ae02577 100644 (file)
@@ -54,6 +54,7 @@ func Init(cliCtx *cli.Context, log *logrus.Logger) (*Config, error) {
                dfltSTHomeDir = resDir
        }
 
+       // Retrieve Server ID (or create one the first time)
        uuid, err := ServerIDGet()
        if err != nil {
                return nil, err
index 65e0fc6..b80e9a4 100644 (file)
@@ -4,6 +4,7 @@ import (
        "encoding/xml"
        "fmt"
        "os"
+       "path/filepath"
 
        common "github.com/iotbzh/xds-common/golib"
        uuid "github.com/satori/go.uuid"
@@ -70,6 +71,13 @@ func serverDataWrite(file string, data ServerData) error {
        sdMutex.Lock()
        defer sdMutex.Unlock()
 
+       dir := filepath.Dir(file)
+       if !common.Exists(dir) {
+               if err := os.MkdirAll(dir, 0755); err != nil {
+                       return fmt.Errorf("Cannot create server data directory: %s", dir)
+               }
+       }
+
        fd, err := os.OpenFile(file, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0666)
        defer fd.Close()
        if err != nil {