20 lines
709 B
YAML
20 lines
709 B
YAML
---
|
|
# Copyright (C) 2016-2017 Maciej Delmanowski <drybjed@gmail.com>
|
|
# Copyright (C) 2016-2017 Robin Schneider <ypid@riseup.net>
|
|
# Copyright (C) 2016-2017 DebOps <https://debops.org/>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
- name: Configure APT proxy
|
|
collections: [ 'debops.debops', 'debops.roles01',
|
|
'debops.roles02', 'debops.roles03' ]
|
|
hosts: [ 'debops_all_hosts', 'debops_service_apt_proxy' ]
|
|
become: True
|
|
|
|
environment: '{{ inventory__environment | d({})
|
|
| combine(inventory__group_environment | d({}))
|
|
| combine(inventory__host_environment | d({})) }}'
|
|
|
|
roles:
|
|
|
|
- role: apt_proxy
|
|
tags: [ 'role::apt_proxy', 'skip::apt_proxy' ]
|