Ask Your Question
1

What is a way to employ 'sudo' that does not involve using 'become' modules?

asked 2023-07-15 01:20:40 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-07-15 01:35:01 +0000

devzero gravatar image

A way to employ 'sudo' without using 'become' modules is to use the 'shell' module with the 'sudo' command. For example:

- name: Execute command with sudo
  shell: sudo ls /root
  become: false

This will execute the 'ls /root' command with sudo privileges, without using the 'become' module. Be sure to set 'become' to 'false' to avoid any conflicts.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-15 01:20:40 +0000

Seen: 14 times

Last updated: Jul 15 '23