blob: 2c1a6e6873d580e0eb23398685da720e81e7b2b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: check if running apt-cacher server
stat: path="/etc/apt-cacher-ng/acng.conf"
register: stat_server_conf
- name: configure apt-cacher proxy
become: yes
template:
src: "02proxy.j2"
dest: "/etc/apt/apt.conf.d/02proxy"
when: not stat_server_conf.stat.exists
|