mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
89 lines
2.5 KiB
Go
89 lines
2.5 KiB
Go
/*
|
|
Copyright (c) 2015-2017 VMware, Inc. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package autostart
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/vmware/govmomi/govc/cli"
|
|
"github.com/vmware/govmomi/govc/flags"
|
|
"github.com/vmware/govmomi/vim25/types"
|
|
)
|
|
|
|
type add struct {
|
|
*AutostartFlag
|
|
// from types.AutoStartPowerInfo
|
|
StartOrder int32
|
|
StartDelay int32
|
|
WaitForHeartbeat string
|
|
StartAction string
|
|
StopDelay int32
|
|
StopAction string
|
|
}
|
|
|
|
func init() {
|
|
cli.Register("host.autostart.add", &add{})
|
|
}
|
|
|
|
var waitHeartbeatTypes = []string{
|
|
string(types.AutoStartWaitHeartbeatSettingSystemDefault),
|
|
string(types.AutoStartWaitHeartbeatSettingYes),
|
|
string(types.AutoStartWaitHeartbeatSettingNo),
|
|
}
|
|
|
|
func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
|
|
cmd.AutostartFlag, ctx = newAutostartFlag(ctx)
|
|
cmd.AutostartFlag.Register(ctx, f)
|
|
|
|
cmd.StartOrder = -1
|
|
cmd.StartDelay = -1
|
|
cmd.StopDelay = -1
|
|
f.Var(flags.NewInt32(&cmd.StartOrder), "start-order", "Start Order")
|
|
f.Var(flags.NewInt32(&cmd.StartDelay), "start-delay", "Start Delay")
|
|
f.Var(flags.NewInt32(&cmd.StopDelay), "stop-delay", "Stop Delay")
|
|
f.StringVar(&cmd.StartAction, "start-action", "powerOn", "Start Action")
|
|
f.StringVar(&cmd.StopAction, "stop-action", "systemDefault", "Stop Action")
|
|
f.StringVar(&cmd.WaitForHeartbeat, "wait", waitHeartbeatTypes[0],
|
|
fmt.Sprintf("Wait for Hearbeat Setting (%s)", strings.Join(waitHeartbeatTypes, "|")))
|
|
}
|
|
|
|
func (cmd *add) Process(ctx context.Context) error {
|
|
if err := cmd.AutostartFlag.Process(ctx); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (cmd *add) Usage() string {
|
|
return "VM..."
|
|
}
|
|
|
|
func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
|
|
powerInfo := types.AutoStartPowerInfo{
|
|
StartOrder: cmd.StartOrder,
|
|
StartDelay: cmd.StartDelay,
|
|
WaitForHeartbeat: types.AutoStartWaitHeartbeatSetting(cmd.WaitForHeartbeat),
|
|
StartAction: cmd.StartAction,
|
|
StopDelay: cmd.StopDelay,
|
|
StopAction: cmd.StopAction,
|
|
}
|
|
return cmd.ReconfigureVMs(f.Args(), powerInfo)
|
|
}
|