Created a role for initial lockdown of recent VPS, and started role for basic server configuration
This commit is contained in:
12
.ansible/roles/lockdown/tasks/deshell.yml
Normal file
12
.ansible/roles/lockdown/tasks/deshell.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
# SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# tasks file for lockdown
|
||||
- name: Disable shell for root user
|
||||
when: ansible_facts["user_id"] != "root"
|
||||
become: true
|
||||
ansible.builtin.user:
|
||||
name: root
|
||||
shell: /sbin/nologin
|
||||
tags:
|
||||
- deshell_root
|
||||
register: root_shell_disabled
|
Reference in New Issue
Block a user