-
Notifications
You must be signed in to change notification settings - Fork 6
/
close-ticket.sh
executable file
·43 lines (39 loc) · 1.14 KB
/
close-ticket.sh
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
#
# Automatic bulk ticket creation based on a list of hosts or
# IP addresses (a mix is ok).
# Script will do lookup of associated email addresses,
# create a ticket according to template and send message
# to email addresses.
#
# 2014-04-15 Sascha Rommelfangen, CIRCL
#
################################################################
#
# Import RT settings
. ./inc_rt.conf
#
################################################################
#
################################################################
#
TESTING=0 # 1 = dry run
# 0 = really closing tickets
#
#
################################################################
################################################################
# NOTHING TO SEE HERE, WALK ALONG! #
################################################################
################################################################
nl='
'
GLOBIGNORE="*"
TICKETID="$1"
OUTPUT=`/opt/rt4/bin/rt resolve $TICKETID`
if [[ `echo $OUTPUT |grep "# Ticket $TICKETID updated."` ]]
then
echo "Ticket $TICKETID resolved".
else
echo "Ticket #$TICKETID FAILED to resolve."
fi