Subversion Repositories DevTools

Rev

Rev 1044 | Rev 2571 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1044 dpurdie 1
#   TEMPLATE: Blat configuration file
2
#
1048 dpurdie 3
#       active          - Active link (Yes/1/y). (default = Yes)
1044 dpurdie 4
#       piddir          - Path to where a pid file will be created (Mandatory) 
5
#       sleep           - Polling period of the main process loop (default = 5)
6
#       dpkg_archive    - Path to local package archive (Mandatory)   
7
#  
1048 dpurdie 8
#
9
active          = 1   
1044 dpurdie 10
piddir          = ./run
11
sleep           = 5
12
dpkg_archive    = /net/auperaunx26/export/devl/dpkg_archive
13
 
14
#   Logging
15
#       verbose         - Enable verbose logging 0 .. 3 (default = 0)
16
#       logfile         - Path to basename of the log file (Mandatory)   
17
#       logfile.size    - Size in bytes of the log file (default = 1M)
18
#       logfile.count   - Number of log files to keep (default = 9)
19
 
20
logfile         = ./log/frbesaarc01.log
21
logfile.size    = 10m
22
logfile.count   = 3
23
verbose         = 0
24
 
25
#
26
#   Target system
27
#       user        - User that has write access to the archive (Mandatory) 
28
#       hostname    - Name of the target host (Mandatory) 
29
#       identity    - Path to ssh identity file for passwordless login (Mandatory) 
30
#                     The public part of this file is on the target
31
#       bindir      - Path to blat utilities on the target (Mandatory) 
32
#                     Relative to the users home directory
33
#
34
user        = pkg_admin
35
hostname    = 10.247.28.57
36
identity    = ./ssh/id_rsa_pkg_admin
37
bindir      = bin
38
 
39
#
40
#   Configure the fast package transfer
1048 dpurdie 41
#       tagdir          - Directory in which RM will flag that package-versions
42
#                         need to be transferred. The user must create this
43
#                         dircetory. (Mandatory) 
1044 dpurdie 44
#       forcedirscan    - Period for retry and safty scan (default 100 )
45
#       tagage          - Dead tags older than this time period will be deleted
46
#                         (default 10m)
47
#       tagListUpdate   - Time period to update fast package transfer config
1048 dpurdie 48
#                         file for blatPopulate. Will pick up new releases added
49
#                         to projects. (default 1h)
1044 dpurdie 50
#
51
tagdir          = ./tags/frbesaarc01 
52
forcedirscan    = 100
53
tagage          = 10m
54
tagListUpdate   = 1h
55
 
56
#
57
#   Configure the release sync process
58
#       synctime        - Period of Release Sync processing (default 2h)
59
#                         If set to '0' then Release Sync processing
60
#                         will not be performed. New packagess will still be
61
#                         transferred via the fast package transfer.
62
#       syncretry       - Retry delay on sync failure (default 5m )
63
#       writewindow     - Writable packages will not be transferred
64
#                         by the sync, unless they are older that the
65
#                         time period specified in this parameter
66
#                         (default 3h)
67
#       maxpackages     - Max packages to send in one iteration (default 5)
68
#                         Limits damage done in any one pass
69
#                         Value of zero will prevent packages being transferred.
70
#                         Similar to setting 'synctime' to 0.
71
#       deletePackages  - Delete packages that are not required (Yes/1/y) (default 0)
72
#       deleteImmediate - Immediate delete or tag for removal by target (default 0)
73
#                         Relies upon on-target processing to cleanup
74
#       deleteAge       - Delete packages that have not been used for some
75
#                         time period. (Default. Never ) 
76
#                         Package deletion is done by transfer master.
77
#
78
synctime        = 2h
79
syncretry       = 5m
80
writewindow     = 3h
81
maxpackages     = 5
82
deletePackages  = Yes
83
deleteImmediate = No
84
deleteAge       = 1
85
 
86
#
1048 dpurdie 87
#       allProjects     - Transfer content of all projects
88
#                         When set, 'project' and 'release' are ignored.
89
#                         (Yes/1/y) (default 0).
90
#       project         - List of one or more projects to sync
91
#                         Closed and Archived releases will not
92
#                         be synced
93
#       release         - List of releases to sync
94
#
95
project         = 
96
release         = 19303 
97
 
98
#
99
#   Package filtering
100
#       packageFilter   - Regexp to limit packages to be transferred
101
#                         Default: ^.*
102
#                         Example: ^ERG
103
#                         
104
#packageFilter  = ^ERG
105
 
106
#
1044 dpurdie 107
#   Specific packages and versions
108
#       pkg.xxx         - Force package xxx to be a part of the transfer set
109
#                         Value specifies the version to transfer
110
#                         If this is a symlink, then both the link
111
#                         and the package will be transferred.
112
#
1048 dpurdie 113
#                         If the version is the keyword 'EXCLUDE' then the
1044 dpurdie 114
#                         package will not be transferred, nor deleted.
115
#
116
pkg.core_devl   = jats2_current
117
pkg.ival-devkit = EXCLUDE
118