virt.virt_test_utils: run_autotest - 'tar' needs relative paths to strip the leading '/'
[autotest-zwu.git] / global_config.ini
blob1f0a76a65a91e398b044dd324942b3401bb66449
1 [AUTOTEST_WEB]
2 host: localhost
3 database: autotest_web
4 db_type: mysql
5 user: autotest
6 password: please_set_this_password
7 job_timeout_default: 72
8 job_max_runtime_hrs_default: 72
9 parse_failed_repair_default: 0
10 # Only set this if your server is not 'http://[SERVER] hostname/afe/'
11 #base_url: http://your_autotest_server/afe/
12 readonly_host: localhost
13 readonly_user: nobody
14 readonly_password:
15 query_timeout: 3600
16 min_retry_delay: 20
17 max_retry_delay: 60
18 graph_cache_creation_timeout_minutes: 10
19 parameterized_jobs: False
20 # Whether to enable django template debug mode. If this is set to True, all
21 # django errors will be wrapped in a nice debug page with detailed environment
22 # and stack trace info. Turned off by default.
23 template_debug_mode: False
24 # Whether to enable django SQL debug mode. If this is set to True, all
25 # queries performed by the Object Relational Mapper subsystem will be printed,
26 # which means the scheduler logs will contains all the queries executed. This
27 # is too much verbosity for 'production' systems, hence turned off by default.
28 sql_debug_mode: False
30 [TKO]
31 host: localhost
32 database: tko
33 db_type: mysql
34 user: autotest
35 password: please_set_this_password
37 [PLANNER]
38 # 3 months
39 execution_engine_timeout: 2160
41 [AUTOSERV]
42 # Autotest potential install paths
43 client_autodir_paths: /usr/local/autotest,/home/autotest
45 [CLIENT]
46 drop_caches: True
47 drop_caches_between_iterations: True
49 [SERVER]
50 hostname: autotest
51 # Turn on RPC Logging
52 rpc_logging: False
53 # Note the user that is running the webserver has to be able to write
54 # to the below directory/file otherwise the frontend will not work with logging
55 rpc_log_path: /usr/local/autotest/logs/rpcserver.log
56 # Number of old logs to keep around
57 rpc_num_old_logs: 5
58 rpc_max_log_size_mb: 20
59 # Minimum amount of disk space required for AutoTest in GB
60 gb_diskspace_required: 5
61 # If for some reason you don't want to rely on the Mail Transport Agent
62 # installed on this machine, you can provide an SMTP server directly here.
63 # If none provided, defaults to 'localhost', which tries to use the MTA
64 # configured on the machine to send the messages.
65 smtp_server:
66 smtp_port:
67 smtp_user:
68 smtp_password:
69 # Time in hours to wait before giving up on crash collection. A timeout of 0
70 # means crash collection is skipped unless the host is already available.
71 crash_collection_hours_to_wait: 4.0
73 [SCHEDULER]
74 die_on_orphans: False
75 enable_scheduler: True
76 notify_email:
77 notify_email_from:
78 notify_email_statuses: Completed,Failed,Aborted
79 max_processes_per_drone: 1000
80 max_jobs_started_per_cycle: 100
81 max_parse_processes: 5
82 max_transfer_processes: 50
83 tick_pause_sec: 5
84 clean_interval_minutes: 60
85 drones: localhost
86 drone_installation_directory: /usr/local/autotest
87 results_host: localhost
88 results_host_installation_directory:
89 secs_to_wait_for_atomic_group_hosts: 600
90 pidfile_timeout_mins: 300
91 max_pidfile_refreshes: 2000
92 gc_stats_interval_mins: 360
93 # set nonzero to enable periodic reverification of all dead hosts
94 reverify_period_minutes: 0
95 reverify_max_hosts_at_once: 0
96 drone_sets_enabled: False
97 # default_drone_set_name: This is required if drone sets are enabled.
98 default_drone_set_name:
100 [HOSTS]
101 wait_up_processes:
102 default_protection: NO_PROTECTION
103 # Time in seconds to wait for a machine to come back after reboot.
104 default_reboot_timeout: 1800
105 # Time in seconds to wait for a machine to go down prior to reboot.
106 wait_down_reboot_timeout: 840
107 # Time in seconds to wait before generating a warning if a host has not gone
108 # down for reboot.
109 wait_down_reboot_warning: 540
110 # Time in hours to wait for a host to recover after a down state.
111 hours_to_wait_for_recovery: 2.5
113 [AUTOSERV]
114 # Autotest has 2 implementations of SSH based hosts, the default (raw_ssh), and
115 # another one based on the python SSH library paramiko (paramiko).
116 # You can change the default 'raw_ssh' to 'paramiko' if you want to.
117 ssh_engine: raw_ssh
118 # Set to True to take advantage of OpenSSH-based connection sharing. This would
119 # have bigger performance impact when ssh_engine is 'raw_ssh'.
120 enable_master_ssh: False
121 # Autotest server operators *really should* set this to True, specially if
122 # using ssh_engine 'paramiko'.
123 require_atfork_module: False
124 # Set to False to disable ssh-agent usage with paramiko
125 use_sshagent_with_paramiko: True
127 [PACKAGES]
128 # Max age of packages in days. All packages older than this will be removed from
129 # upload_location when the packager is run.
130 custom_max_age: 40
131 # Minimum amount of disk space, in gigabytes, required for packaging.
132 minimum_free_space: 1
133 serve_packages_from_autoserv: True
134 # Location to store packages in.
135 upload_location:
136 serve_packages_from_autoserv: True