home · contact · privacy
Add first stab at ansible config for new thinkpad.
[config] / ansible / tasks / set_repos.yml
diff --git a/ansible/tasks/set_repos.yml b/ansible/tasks/set_repos.yml
new file mode 100644 (file)
index 0000000..7605883
--- /dev/null
@@ -0,0 +1,21 @@
+---
+
+- name: APT - use stretch repo 
+  apt_repository:
+    repo: deb http://ftp.debian.org/debian/ stretch main contrib non-free
+    state: present
+
+- name: APT - use stretch security updates repo
+  apt_repository:
+    repo: deb http://security.debian.org/ stretch/updates main contrib non-free
+    state: present
+
+- name: APT - use stretch-updates repo
+  apt_repository:
+    repo: deb http://ftp.debian.org/debian/ stretch-updates main contrib non-free
+    state: present
+
+- name: APT - use stretch-backports repo
+  apt_repository:
+    repo: deb http://ftp.debian.org/debian stretch-backports main contrib non-free
+    state: present