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