srht/tasks/main.yaml
changeset 57 628402a01a59
parent 56 59e94b4a91a2
child 58 baca37fdc8c3
equal deleted inserted replaced
56:59e94b4a91a2 57:628402a01a59
     1 ---
       
     2 
       
     3 - name: add srht repo keys
       
     4   become: yes
       
     5   apt_key: url="https://mirror.sr.ht/debian/key.asc"
       
     6 
       
     7 - name: add srht apt repo
       
     8   become: yes
       
     9   apt_repository: repo="deb https://mirror.sr.ht/debian sid main"
       
    10 
       
    11 - name: install srht
       
    12   become: yes
       
    13   apt:
       
    14     name: "{{item}}"
       
    15   loop:
       
    16     - "python3-hgsrht"