We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f34575 + 19a0809 commit 795e5a2Copy full SHA for 795e5a2
tasks/main.yml
@@ -1,4 +1,6 @@
1
---
2
+- import_tasks: prerequisites/install-prerequisites.yml
3
+
4
- import_tasks: keys/apt-key.yml
5
when: ansible_os_family == "Debian"
6
tasks/prerequisites/install-prerequisites.yml
@@ -0,0 +1,3 @@
+---
+- import_tasks: setup-debian.yml
+ when: ansible_os_family == "Debian"
tasks/prerequisites/setup-debian.yml
@@ -0,0 +1,7 @@
+- Name: "(Install: Debian/Ubuntu) Install Required Debian and Ubuntu Dependencies"
+ apt:
+ name: "{{ item }}"
+ with_items:
+ - apt-transport-https
7
+ - dirmngr
0 commit comments