-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.automatix.cfg.yaml
38 lines (27 loc) · 1.05 KB
/
example.automatix.cfg.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Path to scripts directory
script_dir: '~/automatix_script_files'
# Global constants for use in pipeline scripts
constants:
apt_update: 'apt-get -qy update'
apt_upgrade: 'DEBIAN_FRONTEND=noninteractive apt-get -qy -o Dpkg::Options::=--force-confold --no-install-recommends upgrade'
apt_full_upgrade: 'DEBIAN_FRONTEND=noninteractive apt-get -qy -o Dpkg::Options::=--force-confold --no-install-recommends full-upgrade'
# Encoding
encoding: 'utf-8'
# Path to shell imports
import_path: '.'
# Path to local bash (default: /bin/bash)
bash_path: '/bin/bash'
# SSH Command used for remote connections
ssh_cmd: 'ssh {hostname} sudo '
# Temporary directory on remote machines for shell imports
remote_tmp_dir: 'automatix_tmp'
# Logger
logger: 'mylogger'
# Logging library
logging_lib: 'mylib.logging'
# Logfile directory for parallel processing
logfile_dir: 'automatix_logs'
# Bundlewrap support, bundlewrap has to be installed (default: false)
bundlewrap: true
# Teamvault / Secret support, bundlewrap-teamvault has to be installed (default: false)
teamvault: true