FIX: default user is root, ansible is specified manually

This commit is contained in:
2026-07-06 15:57:24 +00:00
parent a798d42b42
commit eb268a00fb
4 changed files with 6 additions and 9 deletions
@@ -1,7 +1,6 @@
---
## Installing packages
- name: Install sudo on apt systems
remote_user: root
when: (ansible_facts['distribution'] == "Debian") or
(ansible_facts['distribution'] == "Ubuntu")
apt:
@@ -10,12 +9,10 @@
update-cache: yes
- name: Update Alpine packages
remote_user: root
when: (ansible_facts['distribution'] == "Alpine")
command: /sbin/apk update
- name: Install sudo package on Alpine
remote_user: root
when: (ansible_facts['distribution'] == "Alpine")
command: /sbin/apk add sudo
@@ -23,14 +20,12 @@
## Creating and setting up the ansible user
## First, create sshusers group to grant ssh access
- name: Ensure group "sshusers" exists
remote_user: root
ansible.builtin.group:
name: sshusers
state: present
## Add the user to sshusers (for ssh access) and sudo (gain root access)
- name: Create a new user with a password for Ansible
remote_user: root
user:
name: ansible
password: "{{ ansible_user_passwd_hash }}"
@@ -40,7 +35,6 @@
## Since password authentication in SSH will be disabled, we need to add an authorized key
- name: Set authorized key taken from file
remote_user: root
ansible.posix.authorized_key:
user: ansible
state: present