File: initialdata

package info (click to toggle)
rt-extension-nagios 1.01-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 280 kB
  • sloc: perl: 2,765; sh: 89; makefile: 30
file content (22 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- perl -*-

@Scrips = (
    {
        Description    => 'Update Nagios Tickets', # loc
        ScripCondition => 'On Create', # loc
        ScripAction    => 'Update Nagios Tickets', # loc
        Template       => 'Blank',
    },

);

@ScripActions = (
    {
        Name        => 'Update Nagios Tickets',    # loc
        Description => 'Merge or Resolve Nagios Tickets',    # loc
        ExecModule  => 'UpdateNagiosTickets',
    }

);

1;