Skip to content

Commit 110196c

Browse files
committed
add missing become- and connect-user (#66)
1 parent d35eb49 commit 110196c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
## Version 0
44

5-
### 0.0.25
5+
### 0.0.24-3
66

77
* Disable data-refresh if in background
88
* Allow to save current form by using SHIFT+S
9+
* Add missing become- and connect-user
910

1011
----
1112

src/ansibleguy-webui/aw/execute/play_util.py

+6
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,15 @@ def _commandline_arguments(job: Job, execution: JobExecution, creds: BaseJobCred
6060
if is_set(creds.become_pass):
6161
cmd_arguments.append('--ask-become-pass')
6262

63+
if is_set(creds.become_user):
64+
cmd_arguments.append(f'--become-user {creds.become_user}')
65+
6366
if is_set(creds.connect_pass):
6467
cmd_arguments.append('--ask-pass')
6568

69+
if is_set(creds.connect_user):
70+
cmd_arguments.append(f'--user {creds.connect_user}')
71+
6672
if is_set(creds.vault_pass):
6773
cmd_arguments.append('--ask-vault-pass')
6874

0 commit comments

Comments
 (0)