[Rt-commit] [rtir] 04/30: Switch default queue from Blocks to Countermeasures
Shawn Moore
shawn at bestpractical.com
Fri May 13 19:53:03 EDT 2016
This is an automated email from the git hooks/post-receive script.
shawn pushed a commit to branch 3.4/countermeasures
in repository rtir.
commit 36b5bc5dc05bf316231f0478607f7e535c954dae
Author: Shawn M Moore <shawn at bestpractical.com>
Date: Wed Feb 24 23:35:20 2016 +0000
Switch default queue from Blocks to Countermeasures
---
etc/initialdata | 30 +++++++++++++++---------------
lib/RT/IR.pm | 9 +++++----
2 files changed, 20 insertions(+), 19 deletions(-)
diff --git a/etc/initialdata b/etc/initialdata
index b09c634..f8a677d 100644
--- a/etc/initialdata
+++ b/etc/initialdata
@@ -115,7 +115,7 @@
{ Name => 'IP',
Type => 'IPAddressRangeMultiple',
Queue =>
- [ 'Incidents', 'Incident Reports', 'Investigations', 'Blocks' ],
+ [ 'Incidents', 'Incident Reports', 'Investigations', 'Countermeasures' ],
Disabled => 0,
Description => 'IP address for RTIR queues',
LinkValueTo =>
@@ -123,19 +123,19 @@
},
{ Name => 'Netmask',
Type => 'FreeformSingle',
- Queue => 'Blocks',
+ Queue => 'Countermeasures',
Disabled => 0,
Description => 'Network mask for Blocks RTIR queue',
},
{ Name => 'Port',
Type => 'FreeformSingle',
- Queue => 'Blocks',
+ Queue => 'Countermeasures',
Disabled => 0,
Description => 'Port for Blocks RTIR queue',
},
{ Name => 'Where Blocked',
Type => 'FreeformSingle',
- Queue => 'Blocks',
+ Queue => 'Countermeasures',
Disabled => 0,
Description => 'Where the block is placed for Blocks RTIR queue',
},
@@ -266,7 +266,7 @@
},
{ Description => "On Correspond Change Status of the Block",
- Queue => 'Blocks',
+ Queue => 'Countermeasures',
ScripCondition => 'On Correspond',
ScripAction => 'RTIR Set Block Status',
Template => 'Blank',
@@ -291,7 +291,7 @@
},
{ Description => "Set Due Date On Incident",
- Queue => [ 'Incident Reports', 'Investigations', 'Blocks' ],
+ Queue => [ 'Incident Reports', 'Investigations', 'Countermeasures' ],
ScripCondition => 'RTIR Require Due Change',
ScripAction => 'RTIR Set Incident Due',
Template => 'Blank',
@@ -318,14 +318,14 @@
Template => 'Blank',
},
{ Description => "FixOwnership",
- Queue => [ 'Incident Reports', 'Investigations', 'Blocks' ],
+ Queue => [ 'Incident Reports', 'Investigations', 'Countermeasures' ],
ScripCondition => 'On Owner Change',
ScripAction => 'RTIR Change Parent Ownership',
Template => 'Blank',
},
{ Description => "ReopenIncident",
- Queue => [ 'Incident Reports', 'Investigations', 'Blocks' ],
+ Queue => [ 'Incident Reports', 'Investigations', 'Countermeasures' ],
ScripCondition => 'On Status Change',
ScripAction => 'RTIR Open Parent',
Template => 'Blank',
@@ -339,7 +339,7 @@
},
{ Description => "NotifyOnClose",
- Queue => 'Blocks',
+ Queue => 'Countermeasures',
ScripCondition => 'RTIR Close Ticket',
ScripAction => 'Notify Requestors',
Template => 'BlockRemoved'
@@ -347,14 +347,14 @@
{ Description => "SetIPFromContent",
Queue =>
- [ 'Incidents', 'Incident Reports', 'Investigations', 'Blocks' ],
+ [ 'Incidents', 'Incident Reports', 'Investigations', 'Countermeasures' ],
ScripCondition => 'On Correspond',
ScripAction => 'RTIR parse message for IPs',
Template => 'Blank'
},
{ Description => "SetIPFromContent",
Queue =>
- [ 'Incidents', 'Incident Reports', 'Investigations', 'Blocks' ],
+ [ 'Incidents', 'Incident Reports', 'Investigations', 'Countermeasures' ],
ScripCondition => 'On Create',
ScripAction => 'RTIR parse message for IPs',
Template => 'Blank'
@@ -362,7 +362,7 @@
{ Description => "MergeIPs",
Queue =>
- [ 'Incidents', 'Incident Reports', 'Investigations', 'Blocks' ],
+ [ 'Incidents', 'Incident Reports', 'Investigations', 'Countermeasures' ],
ScripCondition => 'RTIR Merge',
ScripAction => 'RTIR merge IPs',
Template => 'Blank'
@@ -374,7 +374,7 @@
# mention it in the UPGRADING file
@Templates = (
- { Queue => 'Blocks',
+ { Queue => 'Countermeasures',
Name => 'Autoreply',
Description => 'Sent when a block is created',
Content => 'RT-Attach-Message: yes
@@ -408,7 +408,7 @@ you may reply to this message.
Thank you,
{ $Ticket->QueueObj->CorrespondAddress }',
},
- { Queue => 'Blocks',
+ { Queue => 'Countermeasures',
Name => 'BlockRemoved',
Description => 'Sent when a block is removed',
Content => 'Subject: {$Ticket->Subject}
@@ -526,7 +526,7 @@ push @ACL, map {
push @ACL, map {
{ GroupType => 'Everyone',
GroupDomain => 'SystemInternal',
- Queue => 'Blocks',
+ Queue => 'Countermeasures',
Right => $_
}
} RT::IR->EveryoneBlockRights();
diff --git a/lib/RT/IR.pm b/lib/RT/IR.pm
index 816df2d..1354915 100644
--- a/lib/RT/IR.pm
+++ b/lib/RT/IR.pm
@@ -82,11 +82,12 @@ my %TYPE = (
'blocks' => 'Block',
);
+# these are used by initialdata to form the default queue names
my %FRIENDLY_LIFECYCLE = (
- RT::IR->lifecycle_incident => 'Incidents',
- RT::IR->lifecycle_report => 'Incident Reports',
- RT::IR->lifecycle_investigation => 'Investigations',
- RT::IR->lifecycle_countermeasure => 'Blocks',
+ RT::IR->lifecycle_incident => 'Incidents',
+ RT::IR->lifecycle_report => 'Incident Reports',
+ RT::IR->lifecycle_investigation => 'Investigations',
+ RT::IR->lifecycle_countermeasure => 'Countermeasures',
);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the rt-commit
mailing list