From 43e3bd62fea11498652127d6f324fc6ad25e509f Mon Sep 17 00:00:00 2001 From: Rene Mewissen Date: Wed, 1 Oct 2025 14:31:14 +0200 Subject: [PATCH] removed unneeded directory --- roles/base/tasks/users/all.yml | 6 +++--- roles/base/tasks/users/setup_ssh.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/roles/base/tasks/users/all.yml b/roles/base/tasks/users/all.yml index b8b802b..56a1901 100644 --- a/roles/base/tasks/users/all.yml +++ b/roles/base/tasks/users/all.yml @@ -1,4 +1,4 @@ -- include_tasks: users/common/create_user.yml +- include_tasks: users/create_user.yml - name: users | {{ user }} | getent user home directory getent: @@ -11,9 +11,9 @@ - set_fact: user_home: "{{ getent_passwd_user.ansible_facts.getent_passwd[user][4] }}" -- include_tasks: users/common/setup_ssh.yml +- include_tasks: users/setup_ssh.yml -- include_tasks: users/common/setup_dotfiles.yml +- include_tasks: users/setup_dotfiles.yml - name: users | wheel | add sudoers file copy: diff --git a/roles/base/tasks/users/setup_ssh.yml b/roles/base/tasks/users/setup_ssh.yml index 4a682e3..df34837 100644 --- a/roles/base/tasks/users/setup_ssh.yml +++ b/roles/base/tasks/users/setup_ssh.yml @@ -1,5 +1,5 @@ --- -- include_tasks: users/common/setup_ssh/install_public_keys.yml -- include_tasks: users/common/setup_ssh/install_private_keys.yml -- include_tasks: users/common/setup_ssh/install_known_hosts.yml -- include_tasks: users/common/setup_ssh/configure_ssh_client.yml \ No newline at end of file +- include_tasks: users/setup_ssh/install_public_keys.yml +- include_tasks: users/setup_ssh/install_private_keys.yml +- include_tasks: users/setup_ssh/install_known_hosts.yml +- include_tasks: users/setup_ssh/configure_ssh_client.yml \ No newline at end of file