1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
define command {
command_name check_load ; same-line comment
command_line $USER1$/check_load
}
; comment on a line by itself
define contact {
use generic-contact
contact_name testuser2
alias Another Test User
email nobody@localhost ; email
; next line is pager ... this comment could end up in the wrong place
pager 1234567890
; previous line was pager ... what will happen to this comment?
random_one 1
random_two a,b,c
random_three 89
}
define contactgroup {
contactgroup_name morecontacts
alias More Test Contacts
members testuser1,testuser2
}
; I hope this doesn't get lost
|