Skip to content

Commit 6cfe448

Browse files
authored
Merge pull request #125 from kazubu/feature/preconf
feature: preconf
2 parents 23b05fa + d6c50f9 commit 6cfe448

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

command_func.go

+7
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,13 @@ func CmdConf(c *cli.Context) error {
244244
nodeinfo[node.Name] = node.Type
245245
}
246246

247+
if len(tnconfig.PreConf) != 0 {
248+
for _, preConf := range tnconfig.PreConf {
249+
preConfCmds := shell.ExecCmd(preConf.Cmds)
250+
utils.PrintCmds(os.Stdout, preConfCmds, verbose)
251+
}
252+
}
253+
247254
for _, nodeConfig := range tnconfig.NodeConfigs {
248255
execConfCmds := nodeConfig.ExecConf(nodeinfo[nodeConfig.Name])
249256
for _, execConfCmd := range execConfCmds {

configs/spec_template.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ precmd:
22
- cmds:
33
- cmd: ""
44
preinit:
5+
- cmds:
6+
- cmd: ""
7+
preconf:
58
- cmds:
69
- cmd: ""
710
postinit:

internal/pkg/shell/shell.go

+14
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ var log = l.New()
1919
type Tn struct {
2020
PreCmd []PreCmd `yaml:"precmd"`
2121
PreInit []PreInit `yaml:"preinit"`
22+
PreConf []PreConf `yaml:"preconf"`
2223
PostInit []PostInit `yaml:"postinit"`
2324
PostFini []PostFini `yaml:"postfini"`
2425
Nodes []Node `yaml:"nodes" mapstructure:"nodes"`
@@ -38,6 +39,11 @@ type PreInit struct {
3839
Cmds []Cmd `yaml:"cmds" mapstructure:"cmds"`
3940
}
4041

42+
// PreConf
43+
type PreConf struct {
44+
Cmds []Cmd `yaml:"cmds" mapstructure:"cmds"`
45+
}
46+
4147
// PostInit
4248
type PostInit struct {
4349
Cmds []Cmd `yaml:"cmds" mapstructure:"cmds"`
@@ -232,6 +238,13 @@ func GenerateFile() (genContent string, err error) {
232238
},
233239
},
234240
}
241+
preconf := PreConf{
242+
Cmds: []Cmd{
243+
Cmd{
244+
Cmd: "",
245+
},
246+
},
247+
}
235248
postinit := PostInit{
236249
Cmds: []Cmd{
237250
Cmd{
@@ -341,6 +354,7 @@ func GenerateFile() (genContent string, err error) {
341354
tnconfig := &Tn{
342355
PreCmd: []PreCmd{precmd},
343356
PreInit: []PreInit{preinit},
357+
PreConf: []PreConf{preconf},
344358
PostInit: []PostInit{postinit},
345359
PostFini: []PostFini{postfini},
346360
Nodes: []Node{nodes},

internal/pkg/shell/shell_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ func TestTn_Exec(t *testing.T) {
229229
type fields struct {
230230
PreCmd []PreCmd
231231
PreInit []PreInit
232+
PreConf []PreConf
232233
PostInit []PostInit
233234
PostFini []PostFini
234235
Nodes []Node
@@ -253,6 +254,7 @@ func TestTn_Exec(t *testing.T) {
253254
tnconfig := &Tn{
254255
PreCmd: tt.fields.PreCmd,
255256
PreInit: tt.fields.PreInit,
257+
PreConf: tt.fields.PreConf,
256258
PostInit: tt.fields.PostInit,
257259
PostFini: tt.fields.PostFini,
258260
Nodes: tt.fields.Nodes,

0 commit comments

Comments
 (0)