summaryrefslogtreecommitdiffstats
path: root/roles/ssh/tasks/install-archlinux.yml
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-08-11 00:32:01 +0200
committerAhmed AbdelHalim <[email protected]>2025-08-11 00:32:01 +0200
commite1919c8d12d61a5b454d6a3372caa21c6d436dcd (patch)
tree43c4e64ec450e05787fa35906d2ec4327b4df09c /roles/ssh/tasks/install-archlinux.yml
parentc3759bbd12585643b02c1d0108e778038d0e6d26 (diff)
Add ssh role
Diffstat (limited to 'roles/ssh/tasks/install-archlinux.yml')
-rw-r--r--roles/ssh/tasks/install-archlinux.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/ssh/tasks/install-archlinux.yml b/roles/ssh/tasks/install-archlinux.yml
new file mode 100644
index 00000000..2b24a346
--- /dev/null
+++ b/roles/ssh/tasks/install-archlinux.yml
@@ -0,0 +1,7 @@
+---
+- name: "Ensure sshd installed"
+ become: true
+ community.general.pacman:
+ name: "{{ ssh_package_name }}"
+ state: present
+ tags: [required_for_boot]