diff options
author | Christian Pointner <equinox@spreadspace.org> | 2020-09-15 20:39:22 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2020-09-15 20:39:22 +0200 |
commit | a9ae6e7d0731f19cf5d01a429a5b5b5b2e7e5d04 (patch) | |
tree | 2a81e4f7d482c688a015eb7e96b5be8b16ed7886 /inventory/group_vars/all | |
parent | add constructed inventory (diff) |
improve handling of apt-repo providers
Diffstat (limited to 'inventory/group_vars/all')
-rw-r--r-- | inventory/group_vars/all/main.yml | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/inventory/group_vars/all/main.yml b/inventory/group_vars/all/main.yml index accb807e..540c4a3e 100644 --- a/inventory/group_vars/all/main.yml +++ b/inventory/group_vars/all/main.yml @@ -22,8 +22,41 @@ sshd_allowusers_group: "{{ admin_users_group }}" apt_repo_provider: default apt_repo_providers: default: - debian: deb.debian.org - ubuntu: archive.ubuntu.com + 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: debian.ffgraz.net - ubuntu: debian.ffgraz.net + 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 |