From 1689bdfdbcccec0e992cbf60b3ae915535756690 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 14 Mar 2025 12:26:00 +0100 Subject: [PATCH] Removed user-alarm, due to that it is managed by other scripts --- docs/COMMON_APPLICATIONS.md | 1 - roles/system-security/meta/main.yml | 1 - roles/user-alarm/tasks/main.yml | 9 --------- 3 files changed, 11 deletions(-) delete mode 100644 roles/user-alarm/tasks/main.yml diff --git a/docs/COMMON_APPLICATIONS.md b/docs/COMMON_APPLICATIONS.md index eca7ea27..a55d9058 100644 --- a/docs/COMMON_APPLICATIONS.md +++ b/docs/COMMON_APPLICATIONS.md @@ -37,7 +37,6 @@ Caters to a range of devices and needs for hardware driver installation and conf Enhances system security with roles focused on security measures, user configurations, and SSH settings. It's vital for protecting both server environments and end-user systems. - **[System Security](./roles/system-security/)**: Enhances overall system security. - **[User Administrator](./roles/user-administrator/)**: Setup for system administrator user. -- **[User Alarm](./roles/user-alarm/)**: Manages the alarm user. - **[PC SSH](./roles/pc-ssh/)**: Configuration of SSH for secure remote access. - **[SSHD](./roles/sshd/)**: Configures SSH daemon settings. - **[System Maintenance Lock](./roles/system-maintenance-lock)**: Locks maintenance services to prevent dangerous inteactions between services diff --git a/roles/system-security/meta/main.yml b/roles/system-security/meta/main.yml index 922742df..51d4db8f 100644 --- a/roles/system-security/meta/main.yml +++ b/roles/system-security/meta/main.yml @@ -1,3 +1,2 @@ dependencies: -- user-alarm - sshd diff --git a/roles/user-alarm/tasks/main.yml b/roles/user-alarm/tasks/main.yml deleted file mode 100644 index 781e48b2..00000000 --- a/roles/user-alarm/tasks/main.yml +++ /dev/null @@ -1,9 +0,0 @@ -# This role is deprecated and can be removed in the future -# The alarm user should be managed by -# @see the repository https://github.com/kevinveenbirkenbach/linux-image-manager -# @see the commit https://github.com/kevinveenbirkenbach/linux-image-manager/commit/bbb54a42377d316b5264330aae36018020f1b981 -- name: remove the user alarm - user: - name: alarm - state: absent - remove: yes