Add start and stop all jails for boot/shutdown, add debug mode
This commit is contained in:
parent
38266af66e
commit
c97f5317dd
26
cmd/root.go
26
cmd/root.go
@ -10,11 +10,11 @@ import (
|
|||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
// TODO : Use log
|
// TODO : Use log
|
||||||
//log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
gVersion = "0.29g"
|
gVersion = "0.30"
|
||||||
|
|
||||||
// TODO : Get from $jail_zpool/defaults.json
|
// TODO : Get from $jail_zpool/defaults.json
|
||||||
MIN_DYN_DEVFS_RULESET = 1000
|
MIN_DYN_DEVFS_RULESET = 1000
|
||||||
@ -27,6 +27,7 @@ var (
|
|||||||
|
|
||||||
gUseSudo bool
|
gUseSudo bool
|
||||||
gForce bool
|
gForce bool
|
||||||
|
gDebug bool
|
||||||
|
|
||||||
gConfigFile string
|
gConfigFile string
|
||||||
gDisplayJColumns string
|
gDisplayJColumns string
|
||||||
@ -109,7 +110,11 @@ ex: gocage list srv-db srv-web`,
|
|||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
// Load inventory
|
// Load inventory
|
||||||
ListJails(args, false)
|
ListJails(args, false)
|
||||||
StopJail(args)
|
if len(args) == 0 {
|
||||||
|
StopAllRunningJails()
|
||||||
|
} else {
|
||||||
|
StopJail(args)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -119,11 +124,17 @@ ex: gocage list srv-db srv-web`,
|
|||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
// Load inventory
|
// Load inventory
|
||||||
ListJails(args, false)
|
ListJails(args, false)
|
||||||
StartJail(args)
|
if len(args) == 0 {
|
||||||
|
StartJailsAtBoot()
|
||||||
|
} else {
|
||||||
|
StartJail(args)
|
||||||
|
}
|
||||||
WriteConfigToDisk(false)
|
WriteConfigToDisk(false)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
restartCmd = &cobra.Command{
|
restartCmd = &cobra.Command{
|
||||||
Use: "restart",
|
Use: "restart",
|
||||||
Short: "restart jail",
|
Short: "restart jail",
|
||||||
@ -293,6 +304,7 @@ func init() {
|
|||||||
rootCmd.PersistentFlags().StringVarP(&gConfigFile, "config", "c", "/usr/local/etc/gocage.conf.yml", "GoCage configuration file")
|
rootCmd.PersistentFlags().StringVarP(&gConfigFile, "config", "c", "/usr/local/etc/gocage.conf.yml", "GoCage configuration file")
|
||||||
rootCmd.PersistentFlags().BoolVarP(&gUseSudo, "sudo", "u", false, "Use sudo to run commands")
|
rootCmd.PersistentFlags().BoolVarP(&gUseSudo, "sudo", "u", false, "Use sudo to run commands")
|
||||||
rootCmd.PersistentFlags().StringVarP(&gTimeZone, "timezone", "t", "", "Specify timezone. Will get from /var/db/zoneinfo if not set.")
|
rootCmd.PersistentFlags().StringVarP(&gTimeZone, "timezone", "t", "", "Specify timezone. Will get from /var/db/zoneinfo if not set.")
|
||||||
|
rootCmd.PersistentFlags().BoolVarP(&gDebug, "debug", "d", false, "Debug mode")
|
||||||
|
|
||||||
// Command dependant switches
|
// Command dependant switches
|
||||||
|
|
||||||
@ -414,6 +426,12 @@ func initConfig() {
|
|||||||
fmt.Printf("More than 3 sort criteria is not supported!\n")
|
fmt.Printf("More than 3 sort criteria is not supported!\n")
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if gDebug {
|
||||||
|
log.SetLevel(log.DebugLevel)
|
||||||
|
log.Debugf("Debug mode enabled\n")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
|
30
cmd/start.go
30
cmd/start.go
@ -1049,6 +1049,34 @@ func cleanAfterStartCrash() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Start all jails with boot=true, in priority order
|
||||||
|
func StartJailsAtBoot() {
|
||||||
|
var startList []Jail
|
||||||
|
|
||||||
|
// Get boot enabled jails
|
||||||
|
for _, j := range gJails {
|
||||||
|
if j.Config.Boot > 0 {
|
||||||
|
startList = append(startList, j)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Order by priority
|
||||||
|
js := initJailSortStruct()
|
||||||
|
fct, _, err := getStructFieldValue(js, "Config.PriorityInc")
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("ERROR getting JailSort struct field \"Config.PriorityInc\"\n")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
JailsOrderedBy(fct.Interface().(jailLessFunc)).Sort(startList)
|
||||||
|
|
||||||
|
for _, j := range startList {
|
||||||
|
jFullName := fmt.Sprintf("%s/%s", j.Datastore, j.Name)
|
||||||
|
log.Debugf("Starting %s with priority %s\n", jFullName, j.Config.Priority)
|
||||||
|
StartJail([]string{jFullName})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Start jail:
|
Start jail:
|
||||||
Check jail fstab?
|
Check jail fstab?
|
||||||
@ -1088,7 +1116,7 @@ func StartJail(args []string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if cj.Running == true {
|
if cj.Running == true {
|
||||||
fmt.Printf("Jail %s is already running!\n", cj.Name)
|
fmt.Printf("Jail %s/%s is already running!\n", cj.Datastore, cj.Name)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
29
cmd/stop.go
29
cmd/stop.go
@ -10,6 +10,8 @@ import (
|
|||||||
//"reflect"
|
//"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO : Use SYS_RCTL_GET_RACCT syscall
|
// TODO : Use SYS_RCTL_GET_RACCT syscall
|
||||||
@ -166,6 +168,33 @@ func stopJail(jail *Jail) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Stop all running jails by reverse priority
|
||||||
|
func StopAllRunningJails() {
|
||||||
|
var stopList []Jail
|
||||||
|
|
||||||
|
// Get boot enabled jails
|
||||||
|
for _, j := range gJails {
|
||||||
|
if j.Running == true {
|
||||||
|
stopList = append(stopList, j)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Order by priority
|
||||||
|
js := initJailSortStruct()
|
||||||
|
fct, _, err := getStructFieldValue(js, "Config.PriorityDec")
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("ERROR getting JailSort struct field \"Config.PriorityDec\"\n")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
JailsOrderedBy(fct.Interface().(jailLessFunc)).Sort(stopList)
|
||||||
|
|
||||||
|
for _, j := range stopList {
|
||||||
|
jFullName := fmt.Sprintf("%s/%s", j.Datastore, j.Name)
|
||||||
|
log.Debugf("Stopping %s with priority %s\n", jFullName, j.Config.Priority)
|
||||||
|
StopJail([]string{jFullName})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Stop jail:
|
Stop jail:
|
||||||
Remove rctl rules
|
Remove rctl rules
|
||||||
|
Loading…
x
Reference in New Issue
Block a user