remove unecessary options

This commit is contained in:
2023-03-20 14:10:17 +01:00
parent cab439192b
commit 90ddd23fee

View File

@@ -15,11 +15,11 @@ Identifier tous les problèmes que peut rencontrer ce script lors de son exécut
Identifier lesquelles sont _indempotentes_ Identifier lesquelles sont _indempotentes_
```bash ```bash
ansible all -u root -k -m debug -a 'msg="{{ 42 | random() }}"' -o ansible all -m debug -a 'msg="{{ 42 | random() }}"' -o
ansible all -u root -k -m debug -a 'msg="{{ 42 | random() }}"' -o ansible all -m debug -a 'msg="{{ 42 | random() }}"' -o
ansible all -u root -k -m debug -a 'msg="{{ 1234 | random( seed='1234') }}"' -o ansible all -m debug -a 'msg="{{ 1234 | random( seed='1234') }}"' -o
ansible all -u root -k -m debug -a 'msg="{{ 1234 | random( seed=inventory_hostname ) }}"' -o ansible all -m debug -a 'msg="{{ 1234 | random( seed=inventory_hostname ) }}"' -o
ansible all -u root -k -m debug -a 'msg="{{ 1234 | random( seed=inventory_hostname ) }}"' -o ansible all -m debug -a 'msg="{{ 1234 | random( seed=inventory_hostname ) }}"' -o
``` ```