Files
abra/pkg/server/server.go
decentral1se 4aaa7400b8
All checks were successful
continuous-integration/drone/push Build is passing
fix: also ensure server is created with 0600
See 6849e3554d
2025-08-17 13:32:37 +02:00

28 lines
507 B
Go

package server
import (
"os"
"path"
"coopcloud.tech/abra/pkg/config"
"coopcloud.tech/abra/pkg/log"
)
// CreateServerDir creates a server directory under ~/.abra.
func CreateServerDir(serverName string) error {
serverPath := path.Join(config.ABRA_DIR, "servers", serverName)
if err := os.Mkdir(serverPath, 0600); err != nil {
if !os.IsExist(err) {
return err
}
log.Debugf("%s already exists", serverPath)
return nil
}
log.Debugf("successfully created %s", serverPath)
return nil
}