Warewulf is now being maintained in its own GitHub organization at github.com/warewulf Signed-off-by: Jonathon Anderson <janderson@ciq.com>
83 lines
2.7 KiB
Go
83 lines
2.7 KiB
Go
package set
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
apiprofile "github.com/warewulf/warewulf/internal/pkg/api/profile"
|
|
"github.com/warewulf/warewulf/internal/pkg/api/routes/wwapiv1"
|
|
"github.com/warewulf/warewulf/internal/pkg/api/util"
|
|
"github.com/warewulf/warewulf/internal/pkg/node"
|
|
"github.com/warewulf/warewulf/internal/pkg/wwlog"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
func CobraRunE(vars *variables) func(cmd *cobra.Command, args []string) (err error) {
|
|
return func(cmd *cobra.Command, args []string) error {
|
|
|
|
// remove the default network as the all network values are assigned
|
|
// to this network
|
|
if !node.ObjectIsEmpty(vars.profileConf.NetDevs["UNDEF"]) {
|
|
netDev := *vars.profileConf.NetDevs["UNDEF"]
|
|
vars.profileConf.NetDevs[vars.netName] = &netDev
|
|
}
|
|
delete(vars.profileConf.NetDevs, "UNDEF")
|
|
if vars.fsName != "" {
|
|
if !strings.HasPrefix(vars.fsName, "/dev") {
|
|
if vars.fsName == vars.partName {
|
|
vars.fsName = "/dev/disk/by-partlabel/" + vars.partName
|
|
} else {
|
|
return fmt.Errorf("filesystems need to have a underlying blockdev")
|
|
}
|
|
}
|
|
fs := *vars.profileConf.FileSystems["UNDEF"]
|
|
vars.profileConf.FileSystems[vars.fsName] = &fs
|
|
}
|
|
delete(vars.profileConf.FileSystems, "UNDEF")
|
|
if vars.diskName != "" && vars.partName != "" {
|
|
prt := *vars.profileConf.Disks["UNDEF"].Partitions["UNDEF"]
|
|
vars.profileConf.Disks["UNDEF"].Partitions[vars.partName] = &prt
|
|
delete(vars.profileConf.Disks["UNDEF"].Partitions, "UNDEF")
|
|
dsk := *vars.profileConf.Disks["UNDEF"]
|
|
vars.profileConf.Disks[vars.diskName] = &dsk
|
|
}
|
|
if (vars.diskName != "") != (vars.partName != "") {
|
|
return fmt.Errorf("partition and disk must be specified")
|
|
}
|
|
delete(vars.profileConf.Disks, "UNDEF")
|
|
buffer, err := yaml.Marshal(vars.profileConf)
|
|
if err != nil {
|
|
wwlog.Error("Cant marshall nodeInfo", err)
|
|
os.Exit(1)
|
|
}
|
|
wwlog.Debug("sending following values: %s", string(buffer))
|
|
set := wwapiv1.ProfileSetParameter{
|
|
NodeConfYaml: string(buffer[:]),
|
|
NetdevDelete: vars.setNetDevDel,
|
|
PartitionDelete: vars.setPartDel,
|
|
DiskDelete: vars.setDiskDel,
|
|
FilesystemDelete: vars.setFsDel,
|
|
AllProfiles: vars.setNodeAll,
|
|
Force: vars.setForce,
|
|
ProfileNames: args,
|
|
}
|
|
|
|
if !vars.setYes {
|
|
var profileCount uint
|
|
// The checks run twice in the prompt case.
|
|
// Avoiding putting in a blocking prompt in an API.
|
|
_, profileCount, err = apiprofile.ProfileSetParameterCheck(&set, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
yes := util.ConfirmationPrompt(fmt.Sprintf("Are you sure you want to modify %d profile(s)", profileCount))
|
|
if !yes {
|
|
return err
|
|
}
|
|
}
|
|
return apiprofile.ProfileSet(&set)
|
|
}
|
|
}
|