lotus/cmd/lotus-miner/config.go

95 lines
1.7 KiB
Go
Raw Normal View History

package main
import (
"fmt"
2021-07-23 13:53:22 +00:00
"github.com/urfave/cli/v2"
2021-07-23 12:57:42 +00:00
"golang.org/x/xerrors"
"github.com/filecoin-project/lotus/node/config"
2021-07-23 13:53:22 +00:00
"github.com/filecoin-project/lotus/node/repo"
)
var configCmd = &cli.Command{
2020-08-18 16:27:28 +00:00
Name: "config",
2021-07-23 12:57:42 +00:00
Usage: "Manage node config",
Subcommands: []*cli.Command{
configDefaultCmd,
configUpdateCmd,
},
}
var configDefaultCmd = &cli.Command{
Name: "default",
Usage: "Print default node config",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "no-comment",
Usage: "don't comment default values",
},
},
Action: func(cctx *cli.Context) error {
2021-07-23 12:57:42 +00:00
c := config.DefaultStorageMiner()
cb, err := config.ConfigUpdate(c, nil, !cctx.Bool("no-comment"))
if err != nil {
return err
}
fmt.Println(string(cb))
return nil
},
}
var configUpdateCmd = &cli.Command{
Name: "updated",
Usage: "Print updated node config",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "no-comment",
Usage: "don't comment default values",
},
},
Action: func(cctx *cli.Context) error {
2021-07-23 13:53:22 +00:00
r, err := repo.NewFS(cctx.String(FlagMinerRepo))
2021-07-23 12:57:42 +00:00
if err != nil {
return err
}
ok, err := r.Exists()
if err != nil {
return err
}
2021-07-23 12:57:42 +00:00
if !ok {
return xerrors.Errorf("repo not initialized")
}
lr, err := r.LockRO(repo.StorageMiner)
if err != nil {
return xerrors.Errorf("locking repo: %w", err)
}
cfgNode, err := lr.Config()
if err != nil {
_ = lr.Close()
return xerrors.Errorf("getting node config: %w", err)
}
if err := lr.Close(); err != nil {
return err
}
cfgDef := config.DefaultStorageMiner()
updated, err := config.ConfigUpdate(cfgNode, cfgDef, !cctx.Bool("no-comment"))
if err != nil {
return err
}
fmt.Print(string(updated))
return nil
},
}