You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If sudo requires a password, and sudo-user is not used, then the first time its encountered in the script, spire should prompt for this password on the console. Thus:
(sudo
(line-in-file :present
{:path "/etc/sudoers"
:insert-at :eof
:line "username ALL=(ALL) NOPASSWD: ALL"})
...
)```
could be used. And the first run it would ask for the password, but then would setup the user in sudoers, and subsequent runs would not need a password.
The text was updated successfully, but these errors were encountered:
If
sudo
requires a password, andsudo-user
is not used, then the first time its encountered in the script, spire should prompt for this password on the console. Thus:The text was updated successfully, but these errors were encountered: