utils.external_packages: Introduce minimum_version
[autotest-zwu.git] / global_config.ini
blob2aee07862f86b8c949c76f527c6d4dca8b06797f
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
21 [TKO]
22 host: localhost
23 database: tko
24 db_type: mysql
25 user: autotest
26 password: please_set_this_password
28 [PLANNER]
29 # 3 months
30 execution_engine_timeout: 2160
32 [AUTOSERV]
33 # Autotest potential install paths
34 client_autodir_paths: /usr/local/autotest,/home/autotest
36 [CLIENT]
37 drop_caches: True
38 drop_caches_between_iterations: True
40 [SERVER]
41 hostname: autotest
42 # Turn on RPC Logging
43 rpc_logging: False
44 # Note the user that is running the webserver has to be able to write
45 # to the below directory/file otherwise the frontend will not work with logging
46 rpc_log_path: /usr/local/autotest/logs/rpcserver.log
47 # Number of old logs to keep around
48 rpc_num_old_logs: 5
49 rpc_max_log_size_mb: 20
50 # Minimum amount of disk space required for AutoTest in GB
51 gb_diskspace_required: 5
52 # If for some reason you don't want to rely on the Mail Transport Agent
53 # installed on this machine, you can provide an SMTP server directly here.
54 # If none provided, defaults to 'localhost', which tries to use the MTA
55 # configured on the machine to send the messages.
56 smtp_server:
57 smtp_port:
58 smtp_user:
59 smtp_password:
60 # Time in hours to wait before giving up on crash collection. A timeout of 0
61 # means crash collection is skipped unless the host is already available.
62 crash_collection_hours_to_wait: 4.0
64 [SCHEDULER]
65 die_on_orphans: False
66 enable_scheduler: True
67 notify_email:
68 notify_email_from:
69 notify_email_statuses: Completed,Failed,Aborted
70 max_processes_per_drone: 1000
71 max_jobs_started_per_cycle: 100
72 max_parse_processes: 5
73 max_transfer_processes: 50
74 tick_pause_sec: 5
75 clean_interval_minutes: 60
76 drones: localhost
77 drone_installation_directory: /usr/local/autotest
78 results_host: localhost
79 results_host_installation_directory:
80 secs_to_wait_for_atomic_group_hosts: 600
81 pidfile_timeout_mins: 300
82 max_pidfile_refreshes: 2000
83 gc_stats_interval_mins: 360
84 # set nonzero to enable periodic reverification of all dead hosts
85 reverify_period_minutes: 0
86 reverify_max_hosts_at_once: 0
87 drone_sets_enabled: False
88 # default_drone_set_name: This is required if drone sets are enabled.
89 default_drone_set_name:
91 [HOSTS]
92 wait_up_processes:
93 default_protection: NO_PROTECTION
94 # Time in seconds to wait for a machine to come back after reboot.
95 default_reboot_timeout: 1800
96 # Time in seconds to wait for a machine to go down prior to reboot.
97 wait_down_reboot_timeout: 840
98 # Time in seconds to wait before generating a warning if a host has not gone
99 # down for reboot.
100 wait_down_reboot_warning: 540
101 # Time in hours to wait for a host to recover after a down state.
102 hours_to_wait_for_recovery: 2.5
104 [AUTOSERV]
105 # Autotest has 2 implementations of SSH based hosts, the default (raw_ssh), and
106 # another one based on the python SSH library paramiko (paramiko).
107 # You can change the default 'raw_ssh' to 'paramiko' if you want to.
108 ssh_engine: raw_ssh
109 # Set to True to take advantage of OpenSSH-based connection sharing. This would
110 # have bigger performance impact when ssh_engine is 'raw_ssh'.
111 enable_master_ssh: False
112 # Autotest server operators *really should* set this to True, specially if
113 # using ssh_engine 'paramiko'.
114 require_atfork_module: False
115 # Set to False to disable ssh-agent usage with paramiko
116 use_sshagent_with_paramiko: True
118 [PACKAGES]
119 serve_packages_from_autoserv: True