homeserver/roles/mgrote.acng/tasks/main.yml
mg 2888d3c326 Typo ACNG (#76)
Typo ACNG

Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: mg/ansible#76
Co-Authored-By: mg <mg@noreply.git.mgrote.net>
Co-Committed-By: mg <mg@noreply.git.mgrote.net>
2021-04-29 11:49:56 +02:00

24 lines
557 B
YAML

---
- name: install apt-cacher-ng packages
become: yes
ansible.builtin.package:
name: apt-cacher-ng
state: present
- name: templating acng.conf
become: yes
ansible.builtin.template:
src: "acng.conf"
dest: "/etc/apt-cacher-ng/acng.conf"
mode: 0664
notify: acng_starten_aktivieren
- name: templating security.conf
become: yes
ansible.builtin.template:
src: "security.conf"
dest: "{{ acng_security_conf_path }}"
mode: 0640
notify: acng_starten_aktivieren
no_log: true