]> git.pld-linux.org Git - projects/pld-builder.new.git/blame - PLD_Builder/path.py
- lots of fixes
[projects/pld-builder.new.git] / PLD_Builder / path.py
CommitLineData
57b6e61d
MM
1import os.path
2
3root_dir = os.path.expanduser('~/pld-builder.new/')
4conf_dir = root_dir + "config/"
5spool_dir = root_dir + "spool/"
6lock_dir = root_dir + "lock/"
b2857486 7www_dir = root_dir + "www/"
57b6e61d
MM
8
9acl_conf = conf_dir + "acl.conf"
b2857486 10builder_conf = conf_dir + "builder.conf"
57b6e61d 11
b5a39692 12# spool/
57b6e61d 13queue_file = spool_dir + "queue"
b5a39692 14req_queue_file = spool_dir + "req_queue"
57b6e61d 15processed_ids_file = spool_dir + "processed_ids"
c8782384
MM
16buildlogs_queue_dir = spool_dir + "buildlogs/"
17ftp_queue_dir = spool_dir + "ftp/"
4d9b6f71 18last_req_no_file = spool_dir + "last_req_no"
3ea4b156 19got_lock_file = spool_dir + "got_lock"
59ce7cd6 20log_file = spool_dir + "log"
b5a39692
MM
21
22# www/
23srpms_dir = www_dir + "srpms/"
24req_queue_signed_file = www_dir + "queue.gz"
4d9b6f71 25max_req_no_file = www_dir + "max_req_no"
9a8908ac 26queue_stats_file = www_dir + "queue.txt"
This page took 0.051271 seconds and 4 git commands to generate.