Difference between revisions of "--ask-become-pass"
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL' | line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL' | ||
validate: 'visudo -cf %s' | validate: 'visudo -cf %s' | ||
+ | |||
+ | |||
+ | == Example == | ||
+ | * <code>[[ansible -m raw]] [[--ask-pass]] [[--ask-become-pass]] DESTINATION_HOSTNAME -a uptime</code> | ||
+ | * <code>[[ansible -m raw]] -u MY_USERNAME -k -K DESTINATION_HOSTNAME -a uptime</code> | ||
== Related terms == | == Related terms == |
Revision as of 11:35, 29 November 2020
#!/usr/bin/env ansible-playbook --ask-become-pass - hosts: YOUR_HOSTNAME become: yes become_method: sudo gather_facts: no tasks: - lineinfile: path: /etc/sudoers state: present line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL' validate: 'visudo -cf %s'
Example
ansible -m raw --ask-pass --ask-become-pass DESTINATION_HOSTNAME -a uptime
ansible -m raw -u MY_USERNAME -k -K DESTINATION_HOSTNAME -a uptime
Related terms
See also
- Ansible: modules, plugins, Playbooks (examples)
ansible-playbook
,ansible-vault
,ansible-inventory
,ansible-config
, Ansible Tower, Ansible Galaxy (Roles) (ansible-galaxy
),ansible-cmdb
,gather facts
,ansible.cfg
,Ansible Molecule
, Ansible collections,register
,template
,--ask-pass
,--ask-become-pass
,remote_user:
,/etc/ansible/hosts
,ansible-doc
,ansible-lint
,.ansible/
,--forks
,--start-at-task
,changelog
,inventory
,Notify:
,ansible HOSTNAME -m ping
,gathering
,/usr/bin/ansible
,ansible -m ping
,ansible.builtin
,hosts: (Ansible)
,set fact:
,when:
,blockinfile:
,become method:
,include:
,git:
, AWX,ansible --help
, Tags, Ansible variables, versions
Advertising: