Skip to content

Commit

Permalink
add restart subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
mhewedy committed May 9, 2020
1 parent 2a6e2d8 commit 6e38ea3
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions cmd/restart.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
Copyright © 2020 NAME HERE <EMAIL ADDRESS>
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 cmd

import (
"errors"
"fmt"
"github.com/mhewedy/vermin/vms"
"github.com/spf13/cobra"
"os"
)

// restartCmd represents the restart command
var restartCmd = &cobra.Command{
Use: "restart",
Short: "Restart one or more VMs",
Long: `Restart one or more VMs`,
Run: func(cmd *cobra.Command, args []string) {
for _, vmName := range args {
if err := vms.Stop(vmName); err != nil {
fmt.Println(err)
os.Exit(1)
}
if err := vms.Start(vmName); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
},
Args: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return errors.New("vm required")
}
return nil
},
ValidArgsFunction: listStoppedVms,
}

func init() {
rootCmd.AddCommand(restartCmd)

// Here you will define your flags and configuration settings.

// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// restartCmd.PersistentFlags().String("foo", "", "A help for foo")

// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
//restartCmd.Flags().BoolP("purge", "p", false, "Purge the IP cache")
}

0 comments on commit 6e38ea3

Please sign in to comment.