I typically do something like:

    - name: Disable the ubuntu user
      user:
        name: ubuntu
        password: "!"
        shell: /usr/sbin/nologin

    - name: Remove the ubuntu users ssh key
      file:
        path: /home/ubuntu/.ssh/authorized_keys
        force: yes
        state: absent

On Thu, Apr 12, 2018 at 4:11 PM, POOJA VENKATESH <
poojavenkateshre...@gmail.com> wrote:

>
> I am trying to disable a user and not remove it completely
>
> ---
> - hosts: target1
>   tasks:
>     - name: disable the user
>       become: yes
>       user:
>         name: random
>         group: sudo
>         state: absent
>
>
> When I run this playbook I see that the user is removed. Is there a way I
> can disable the user other than using expire parameter? I just want the
> user to stay but not have any login capabilities.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to ansible-project+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/ansible-project/CAAGG3SAX-Anb95ODx10xL21WoyzRN3VwWcogZwv
> rxweUowd5Qg%40mail.gmail.com
> <https://groups.google.com/d/msgid/ansible-project/CAAGG3SAX-Anb95ODx10xL21WoyzRN3VwWcogZwvrxweUowd5Qg%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Matt Martz
@sivel
sivel.net

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAD8N0v8re6zFFnDo5kQcv2zdUXzbSC-p%2ByXvTM2Q5CBvjZth9w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to