mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
518 B
YAML
15 lines
518 B
YAML
5 years ago
|
- hosts: vyos-1-1-8
|
||
|
connection: ansible.netcommon.network_cli
|
||
|
become: true
|
||
|
gather_facts: false
|
||
|
|
||
|
tasks:
|
||
|
- name: Get rid of user (undo everything from setup.yml)
|
||
|
register: result
|
||
|
vyos.vyos.vyos_config:
|
||
|
lines:
|
||
|
- delete system login user atester full-name "Ansible Tester"
|
||
|
- delete system login user atester authentication plaintext-password testymctest
|
||
|
- delete system login user jsmith level admin
|
||
|
- set service ssh disable-password-authentication
|