set execution user as preprovisioned

This commit is contained in:
2025-01-26 16:24:45 +01:00
parent 2534f09a15
commit f45ecf8118
+5
View File
@@ -8,6 +8,7 @@
- name: Provision all hosts
hosts: all
become: true
remote_user: nerevar
tasks:
- name: Set hostname
hostname:
@@ -34,12 +35,14 @@
- name: Update Debian hosts
hosts: debian
become: true
remote_user: nerevar
tasks:
- name: Update
include_tasks: tasks/update_debian.yml
- name: Update Arch hosts
hosts: arch
become: true
remote_user: nerevar
tasks:
- name: Update
include_tasks: tasks/update_arch.yml
@@ -52,6 +55,7 @@
- name: Add utility scripts
hosts: all
become: true
remote_user: nerevar
tasks:
- import_tasks: tasks/scripts.yml
- name: Add Nocturnal SMB share
@@ -64,5 +68,6 @@
- name: Install tmux
hosts: all
become: true
remote_user: nerevar
tasks:
- import_tasks: tasks/tmux.yml