-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreport-syncers.conf
executable file
·60 lines (49 loc) · 2.33 KB
/
report-syncers.conf
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# This is a configuration file for script report-syncers.sh
# You may pass it explicitly to the script with a -c option, or save it into
# one of the default search locations. The priority of the individual
# specifications is as follows:
# 1. Command line options (later trump earlier)
# 2. $HOME/.report-syncers.conf
# 3. /etc/report-syncers.conf
# 4. Internal defaults
# Lower priority No. trumps higher.
#
# Support is available at https://github.com/CESNET/DHuSTools/issues
## OPTIONS ##
# Skip (do not output synchronizers) that are STOPPED, i.e., inactive
#SKIPSTOPPED=0
# Do not upload a new table in case all remotes could not be contacted
#SENDINCOMPLETE=0
# Path to file containing the list of remote endpoints to check
#REMOTES="~/.remote_syncers"
# Working directory for the script. ALSO the reslut of the last run is kept in
# that directory.
#VARDIR="/var/tmp/report-syncers"
# Jira issue to append
#JISSUE="https://serco-copernicus.atlassian.net/rest/api/2/issue/EDR-4/comment"
# Extra arguments for curl when uploading the comment. This may contain your
# logon details for Jira (-u <username>:<password> but using .netrc is much
# more mreferrable.
# The extra arguments may also be used to point to a custom CA certificate file
# since SERCO Jira nowadays uses cortificates from a rogue CA.
#XTRAARG="--cacert ~/RapidSSLRSACA2018.crt"
# Synchronizer label partern to skip. Some synchronizers are created
# temporarily by automated tools such as `gap_fill` and should not be reported.
# Use this setting to give an extended regex pattern for labels to ommit.
# If you want to specify multiple patterns, separate the with a pipe '|'.
# The actual matching is done with `grep -E` (extended regex).
#SKIPPATTERN="^gap_fill"
# Greeter and Tail lines. These are added in front of and after the generated
# table, respectively. Bear in mind that the default is not to have them
# at all, i.e., if you add a greeter line, it MUST end with a newline
# character ('\\\\n'), otherwise it will be prepended to the head line of your
# table!
#GREETINGLINE="\\\\n\\\\n"
#GOODBYELINE="\\\\n"
# Table formatting options (Jira is default, other formats perhaps later)
# Change at your own risk
#TABLEHEAD="||Label || Schedule || PageSize || FilterParam || ServiceLogin || URL || ID || Instance ||"
#TABLETAIL=""
#TABROWSTART="|"
#TABROWEND="|"
#TABCOLSEP=" | "