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