srht/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Sun, 28 Jun 2020 12:27:27 -0500
changeset 53 9e4f750f5d36
parent 48 4b18b1523ec2
permissions -rw-r--r--
Disable systemd-resolved to not conflict with adguard home.

---

- name: add srht repo keys
  become: yes
  apt_key: url="https://mirror.sr.ht/debian/key.asc"

- name: add srht apt repo
  become: yes
  apt_repository: repo="deb https://mirror.sr.ht/debian sid main"

- name: install srht
  become: yes
  apt:
    name: "{{item}}"
  loop:
    - "python3-hgsrht"