diff options
author | Roman Melnikov | 2024-09-27 16:26:09 +0200 |
---|---|---|
committer | GitHub | 2024-09-27 16:26:09 +0200 |
commit | aa07eb05537d4cd025e2310397a6adcedfe72c76 (patch) | |
tree | f9c4ade408edc0c81b86481102af5a5fffd292c9 | |
parent | 3867348fa92bc892eba5d9ddb2d7a97b9e127a8a (diff) | |
parent | a1eb366d134308e6e8db781e15b05c6f2cf3de83 (diff) |
Merge pull request #295 from AsterisMono/master
doc: add option doc for interactiveSudo
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -197,6 +197,10 @@ This is a set of options that can be put in any of the above definitions, with t # This will default to "sudo -u" if not specified anywhere. sudo = "doas -u"; + # Whether to enable interactive sudo (password based sudo). Useful when using non-root sshUsers. + # This defaults to `false` + interactiveSudo = false; + # This is an optional list of arguments that will be passed to SSH. sshOpts = [ "-p" "2121" ]; |