forked from pebbleit/munki-trello
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmunki-trello.cfg-template
103 lines (100 loc) · 3.37 KB
/
munki-trello.cfg-template
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#
# Munki Trello Settings
#
# Settings for munki-trello will be read from this file; if not
# specified here, they will take the default value.
#
# Any value given here can be overwritten on the command line
#
# The default configuration file locations are:
# /etc/munki-trello/munki-trello.cfg
# ./munki-trello.cfg
# You can add an extra config file location by using the --config
# command line option. N.B. Configuration files will be processed
# *before* command line options
#
# This file has 4 sections:
# * main - main application settings
# * development - settings about the development board/catalog
# * testing - settings about the testings board/catalog
# * production - settings about the production board/catalog
#
[main]
# The ID of the trello board - the board ID is the part after ``/b``
# and before the name of your board in the trello URL
# No default
#boardid=
# The API key and user token for trello - see README.md about generating
# this and the token that follows
# No default
#key=
#token=
# The path to the munki `makecatalogs`` command.
# Defaults to ``/usr/local/munki/makecatalogs``
# makecatalogs=/usr/local/munki/makecatalogs
# The path to the Munki repository being used
# Defaults to ``Volumes/Munki``
# repo_path=/Volumes/Munki
# The date format to use when creating dated lists.
# See strftime(1) for details of formatting options.
# Defaults to ``%d/%m/%y``
# date_format=%d/%m/%y
# Settings for the development catalog and list
[development]
# The name trello list for development
# Defaults to Development
#list=Development
# The name of the munki catalog for development
# Defaults to development
#catalog=development
# The name of the 'To Development' list in trello
# Defaults to 'To Development'
#to_list='To Development'
# The amount of time in the future that packages will be auto staged
# to testing.
# Note: you have to turn on auto-staging separately (in the testing
# section)
#stage_days=0
# Settings for the testing catalog and list
[testing]
# The name trello list for testing
# Defaults to Testing
#list=Testing
# The name of the munki catalog for testing
# Defaults to testing
#catalog=testing
# The name of the 'To Testing' list in trello
# Defaults to 'To Testing'
#to_list='To Testing'
# The amount of time in the future that packages will be auto staged
# to production.
# Note: you have to turn on auto-staging separately (in the production
# section)
#stage_days=0
# Do we automatically stage packages from development to testing
# that are past their due date
# Note: you have to set the stage_days time separately (in the
# development section)
#autostage=0
# Settings for the production catalog and list
[production]
# The name of the munki catalog for production
# Defaults to production
#catalog=production
# The name of the 'To Production' list in trello
# Defaults to 'To Production'
#to_list='To Production'
# The suffix to add to boards that are created
# as packages are moved into the dated production catalog.
# Defaults to 'Production'
# If unset ('suffix=') we will add to the trello list name (see option below)
#suffix=Production
# The name of the trello list for Production
# Defaults to Production
# N.B. will only be used if 'suffix' is unset
#list=Production
# Do we automatically stage packages from testing to production
# that are past their due date
# Note: you have to set the stage_days time separately (in the
# testing section)
#autostage=0