ANSIBLE SERIES: YML … shutting down a user >> (pt.II) searching for home

https://raw.githubusercontent.com/vicrlda/awx-tower/main/playbooks/search-for-home.yml
---

- hosts: all
  become: yes
  
  tasks:
    - name: CAT <> validando exclusao do usuario ...
      ansible.builtin.shell: cat /etc/passwd | grep "{{ user }}" || /bin/true
      register: cat
      
    - debug:
        msg="{{ cat.stdout_lines }}"
            
    - name: LS <> buscando pasta e arqs. do usuario ...
      ansible.builtin.shell: ls -l /home | grep "{{ user }}" || /bin/true
      register: ls
      
    - debug:
        msg="{{ ls.stdout_lines }}"
            
    - debug:
        msg: 'INFO <> ok (...) /HOME/FUNCIONARIO foi encontrada !!!'
    
...
Figura 01. ANTES
Figura 02. DEPOIS

CURTA, COMPARTILHE, COMENTE

Deixe uma resposta

Este site utiliza o Akismet para reduzir spam. Saiba como seus dados em comentários são processados.