server/hosts/abstract_ssh.py: Allow for site extension of base ssh command
[autotest-zwu.git] / global_config.ini
blobe822a1e96768b8b709c154a07ccca9c718f3a787
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:
61 [SCHEDULER]
62 die_on_orphans: False
63 enable_scheduler: True
64 notify_email:
65 notify_email_from:
66 notify_email_statuses: Completed,Failed,Aborted
67 max_processes_per_drone: 1000
68 max_jobs_started_per_cycle: 100
69 max_parse_processes: 5
70 max_transfer_processes: 50
71 tick_pause_sec: 5
72 clean_interval_minutes: 60
73 drones: localhost
74 drone_installation_directory: /usr/local/autotest
75 results_host: localhost
76 results_host_installation_directory:
77 secs_to_wait_for_atomic_group_hosts: 600
78 pidfile_timeout_mins: 300
79 max_pidfile_refreshes: 2000
80 gc_stats_interval_mins: 360
81 # set nonzero to enable periodic reverification of all dead hosts
82 reverify_period_minutes: 0
83 reverify_max_hosts_at_once: 0
84 drone_sets_enabled: False
85 # default_drone_set_name: This is required if drone sets are enabled.
86 default_drone_set_name:
88 [HOSTS]
89 wait_up_processes:
90 default_protection: NO_PROTECTION
92 [AUTOSERV]
93 # Autotest has 2 implementations of SSH based hosts, the default (raw_ssh), and
94 # another one based on the python SSH library paramiko (paramiko).
95 # You can change the default 'raw_ssh' to 'paramiko' if you want to.
96 ssh_engine: raw_ssh
97 # Set to True to take advantage of OpenSSH-based connection sharing. This would
98 # have bigger performance impact when ssh_engine is 'raw_ssh'.
99 enable_master_ssh: False
100 # Autotest server operators *really should* set this to True, specially if
101 # using ssh_engine 'paramiko'.
102 require_atfork_module: False
103 # Set to False to disable ssh-agent usage with paramiko
104 use_sshagent_with_paramiko: True
107 [PACKAGES]
108 serve_packages_from_autoserv: True