Skip to content
Snippets Groups Projects
Commit 9f5fbc6a authored by jurgenhaas's avatar jurgenhaas
Browse files

Lock/unlock users including passwords and ssh keys

parent f337e43e
No related branches found
No related tags found
No related merge requests found
users: []
#!/bin/bash
echo "[" >/etc/ansible/facts.d/users.fact
cat /etc/passwd | perl -aF: -ne 'print "{\"name\": \"",$F[0],"\",\"home\": \"",$F[5],"\"},\n" if $F[2] > 499' >>/etc/ansible/facts.d/users.fact
echo "0]" >>/etc/ansible/facts.d/users.fact
##
# Task file in Ansible role "users" to securely lock deprecated user accounts.
#
---
# file: cleanup.yml
- name: "Make sure, the directory exists"
file: dest='/etc/ansible/facts.d'
state=directory
owner=root
group=root
mode=775
- name: "Copy the extract script"
copy: src='etc_ansible_facts_d_users_sh'
dest='/etc/ansible/facts.d/users.sh'
owner=root
group=root
mode=755
- name: "Extract user list"
shell: /etc/ansible/facts.d/users.sh
- name: "Gather facts"
setup:
- name: "Unlock legitimate user accounts"
command: usermod --unlock {{item.name}}
with_items: ansible_local.users
when: item.name is defined and item.name in users
- name: "Lock deprecated user accounts"
command: usermod --lock {{item.name}}
with_items: ansible_local.users
when: item.name is defined and item.name not in users
- name: "Disable ssh keys for deprecated user accounts"
command: rm {{item.home}}/.ssh/authorized_keys
with_items: ansible_local.users
when: item.name is defined and item.name not in users
##
# Main task file in Ansible role "users" to manage user accounts on hosts.
#
---
# file: main.yml
- name: "Check requirements: is the user hash defined"
local_action: shell echo "There are no users defined"
when: not users
changed_when: false
failed_when: not users
- include: cleanup.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment