reboot-strategy: remove the 'false' value

Since we no longer do a two-stage unmarshal, the 'false' value will no
longer be necessary.
This commit is contained in:
Alex Crawford
2014-12-20 18:04:45 -08:00
parent 248536a5cd
commit 40d943fb7a
3 changed files with 3 additions and 20 deletions

View File

@@ -17,7 +17,7 @@
package config
type Update struct {
RebootStrategy string `yaml:"reboot_strategy" env:"REBOOT_STRATEGY" valid:"best-effort,etcd-lock,reboot,off,false"`
RebootStrategy string `yaml:"reboot_strategy" env:"REBOOT_STRATEGY" valid:"best-effort,etcd-lock,reboot,off"`
Group string `yaml:"group" env:"GROUP"`
Server string `yaml:"server" env:"SERVER"`
}