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