1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
--- - 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"
☐