30 lines
704 B
YAML
30 lines
704 B
YAML
---
|
|
- name: Install apt-cacher-ng
|
|
apt:
|
|
name: apt-cacher-ng
|
|
state: present
|
|
register: apt_result
|
|
retries: 3
|
|
until: apt_result is succeeded
|
|
|
|
- name: Deploy configuration for apt-cacher-ng
|
|
template:
|
|
src: apt-cacher-ng/acng.conf.j2
|
|
dest: /etc/apt-cacher-ng/acng.conf
|
|
|
|
- name: Setup https for debian repository
|
|
template:
|
|
src: apt-cacher-ng/backends_debian.j2
|
|
dest: /etc/apt-cacher-ng/backends_debian
|
|
|
|
- name: Removes other distribution
|
|
file:
|
|
path: "/etc/apt-cacher-ng/{{ item }}"
|
|
state: absent
|
|
loop:
|
|
- backends_ubuntu.default
|
|
- backends_ubuntu
|
|
- backends_kali.default
|
|
- backends_gentoo.default
|
|
- backends_debvol
|
|
- backends_debian.default
|