blob: 555e14e12ce7356f6ef55967a806db82d4feea9b (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: Test 'become_method' plugin validity
hosts: localhost
become: true
become_method: this_is_not_an_installed_plugin
tasks:
- name: Another example
ansible.builtin.debug:
msg: "This should not be reached"
become_method: this_is_not_an_installed_plugin
|