apt-cacher/server/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Sun, 28 Jun 2020 12:27:27 -0500
changeset 53 9e4f750f5d36
parent 2 2556522a2a45
child 144 267d58c0e186
permissions -rw-r--r--
Disable systemd-resolved to not conflict with adguard home.

---

- name: install apt packages
  become: yes
  apt: name="apt-cacher-ng"

- name: configure apt-cacher dirs
  become: yes
  lineinfile:
    path: "/etc/apt-cacher-ng/acng.conf"
    regexp: "^{{item.key}}:"
    insertafter: "^# {{item.key}}:"
    line: "{{item.key}}: {{item.val}}"
  with_items:
    - { key: "CacheDir", val: "{{apt_cacher_cache_dir}}" }
    - { key: "LogDir", val: "{{apt_cacher_log_dir}}" }
    - { key: "Port", val: "{{apt_cacher_port}}" }