1
0
mirror of https://github.com/lxc/crio-lxc.git synced 2026-02-05 09:45:04 +01:00

config: Create config file parent directory.

Signed-off-by: Ruben Jenster <r.jenster@drachenfels.de>
This commit is contained in:
Ruben Jenster
2021-05-06 12:02:55 +02:00
parent a2aae0c8bc
commit 86fd2f6795

View File

@@ -911,7 +911,7 @@ var configCmd = cli.Command{
}
// NOTE lxcri config > /etc/lxcri/lxcri.yaml does not work
func doConfig(ctxcli *cli.Context) (err error) {
func doConfig(ctxcli *cli.Context) error {
// generate yaml
c := clxc
if ctxcli.Bool("default") {
@@ -931,6 +931,9 @@ func doConfig(ctxcli *cli.Context) (err error) {
}
if out != "" {
fmt.Printf("Writing to file %s\n", out)
if err := os.MkdirAll(filepath.Dir(out), 0750); err != nil {
return fmt.Errorf("failed to create config file parent directory: %w", err)
}
return os.WriteFile(out, data, 0640)
}
return nil