From 03c9b839eeb72144da29cd32072fa585788885fe Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Thu, 25 Dec 2025 15:42:10 +0000 Subject: [PATCH] Delete NewUser.yml --- NewUser.yml | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 NewUser.yml diff --git a/NewUser.yml b/NewUser.yml deleted file mode 100644 index f99323e..0000000 --- a/NewUser.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -- name: Create a new user with root rights - hosts: all - become: yes # This allows Ansible to run commands as root - - tasks: - - name: Create user 'joshlaymon' with password '1993llelMO65026' and root rights - user: - name: joshlaymon - password: "{{ '1993llelMO65026' | password_hash('sha512') }}" - shell: /bin/bash - groups: sudo # Add the user to the sudo group for root access - append: yes # Append to existing groups if user already exists