src.nth.io/

summaryrefslogtreecommitdiff
path: root/srht/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'srht/tasks')
-rw-r--r--srht/tasks/main.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/srht/tasks/main.yaml b/srht/tasks/main.yaml
new file mode 100644
index 0000000..843ffce
--- /dev/null
+++ b/srht/tasks/main.yaml
@@ -0,0 +1,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"