move common-bitlair tasks into main

This commit is contained in:
Mark Janssen 2024-07-11 21:43:46 +02:00
parent 7d59c108d6
commit 4fe85270a6
2 changed files with 8 additions and 8 deletions

View file

@ -1,8 +0,0 @@
---
- name: Update authorized_keys
ansible.builtin.template:
src: authorized_keys.j2
dest: /root/.ssh/authorized_keys
mode: 0600
when: root_access is defined and root_access
tags: authorized_keys

View file

@ -30,6 +30,14 @@
ansible.builtin.import_tasks:
file: apt-minimal.yaml
- name: Update authorized_keys
ansible.builtin.template:
src: authorized_keys.j2
dest: /root/.ssh/authorized_keys
mode: 0600
when: root_access is defined and root_access
tags: authorized_keys
- tags: network
ansible.builtin.import_tasks:
file: network.yaml