Exemple #1
0
func DowntimeID(c *lvst.Command, i int) {
	c.Arg(i)
}
Exemple #2
0
func Comment(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #3
0
func End(c *lvst.Command, t time.Time) {
	c.Arg(t.Unix())
}
Exemple #4
0
func Fixed(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
Exemple #5
0
func Delete(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
Exemple #6
0
func ContactGroupName(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #7
0
func Sticky(c *lvst.Command, b bool) {
	c.Arg(stickyBool(b).String())
}
Exemple #8
0
func NotificationNumber(c *lvst.Command, i int) {
	c.Arg(i)
}
Exemple #9
0
func VarName(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #10
0
func StatusCode(c *lvst.Command, i int) {
	c.Arg(i)
}
Exemple #11
0
func ReturnCode(c *lvst.Command, i int) {
	c.Arg(i)
}
Exemple #12
0
func CheckAttempts(c *lvst.Command, i int) {
	c.Arg(i)
}
Exemple #13
0
func Options(c *lvst.Command, i int) {
	c.Arg(i)
}
Exemple #14
0
func CommentID(c *lvst.Command, i int) {
	c.Arg(i)
}
Exemple #15
0
func HostGroupName(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #16
0
func VarValue(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #17
0
func ServiceGroupName(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #18
0
func EventHandlerCommand(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #19
0
func ServiceDescription(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #20
0
func CheckCommand(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #21
0
func Notify(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
Exemple #22
0
func CheckTimePeriod(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #23
0
func Persistent(c *lvst.Command, b bool) {
	c.Arg(normalBool(b).String())
}
Exemple #24
0
func FileName(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #25
0
func Author(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #26
0
func PluginOutput(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #27
0
func Start(c *lvst.Command, t time.Time) {
	c.Arg(t.Unix())
}
Exemple #28
0
func Hostname(c *lvst.Command, s string) {
	c.Arg(s)
}
Exemple #29
0
func CheckTime(c *lvst.Command, t time.Time) {
	c.Arg(t.Unix())
}
Exemple #30
0
func TriggerID(c *lvst.Command, i int) {
	c.Arg(i)
}