Adhoc Commands Flashcards

1
Q

Como se ejecuta un comando en los hosts

A

ansible -m command -a date

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Como se listan los ansible de módulos

A

ansible-doc -l

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Como se lista la información de un módulo

A

ansible-doc moduleNAME

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Como se crea un usuario con ansible

A

ansible -m user -a name=USER

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Como puedes ejecutar una acción sobre un server con ansible

A

Se necesita que esté en el inventario

ansible servera -m user -a name=user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Cual es el módulo defecto de ansible

A

command

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Como se cambia un usuario a ausente

A

ansible server -m user -a “name=ricardo state=absent”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Que significan los

Colores

A

Verde acción correcta sin modificación
Amarilla acción correcta con modificaciones
Rojo acción errónea con errores

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Como se ejecuta un módulo sobre todos los hosts del inventario

A

ansible all -m ping

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Que hace el Ping module

A

Busca el Python y contesta con pong si hay Python

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Como se obtiene el id de usuario con ansible

A

ansible localhost all -m copy -a “uid=id”:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Como se usa el módulo de copy

A

ansible all -m copy -a ‘content=“Managed by Ansible\n” dest=/etc/motd’ -u devops —become

How well did you know this?
1
Not at all
2
3
4
5
Perfectly