blob: 8caca7f8343621a8f86f502f42fdde064dbada17 (
plain) (
blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
---
# Build-related directories
global_artifacts_dir: "{{ inventory_dir }}/../artifacts"
global_cache_dir: "{{ inventory_dir }}/../.cache"
# Directory for static assets
global_files_dir: "{{ inventory_dir }}/../files"
ssh_users_root:
- equinox
ssh_keys_root: "{{ ssh_users_root | default([]) | map('extract', users) | map(attribute='ssh') | flatten | list }}"
ssh_keys_root_extra: []
admin_users_host: []
sshd_allowusers_host: "{{ admin_users_host }}"
admin_users_group: []
sshd_allowusers_group: "{{ admin_users_group }}"
apt_repo_provider: default
apt_repo_providers:
default:
debian:
host: deb.debian.org
path: /debian
debian_security:
host: deb.debian.org
path: /debian-security
debian_archive:
host: archive.debian.org
path: /debian
ubuntu:
host: archive.ubuntu.com
path: /ubuntu
hetzner:
debian:
host: mirror.hetzner.de
path: /debian/packages
debian_security:
host: mirror.hetzner.de
path: /debian/security
debian_archive:
host: archive.debian.org
path: /debian
ubuntu:
host: mirror.hetzner.de
path: /ubuntu/packages
ffgraz:
debian:
host: debian.ffgraz.net
path: /debian
debian_security:
host: debian.ffgraz.net
path: /debian-security
debian_archive:
host: debian.ffgraz.net
path: /archive
ubuntu:
host: debian.ffgraz.net
path: /ubuntu
inode:
debian:
host: debian.inode.at
path: /debian
debian_security:
host: security.debian.org
path: /debian-security
debian_archive:
host: archive.debian.org
path: /debian
ubuntu:
host: ubuntu.inode.at
path: /ubuntu
anexia:
debian:
host: debian.anexia.at
path: /debian
debian_security:
host: debian.anexia.at
path: /debian-security
debian_archive:
host: archive.debian.org
path: /debian
ubuntu:
host: ubuntu.anexia.at
path: /ubuntu
|