Skip to content

Commit fb74490

Browse files
committed
handle jobs without credentials (#66)
1 parent 1334197 commit fb74490

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

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

+13-12
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _exec_log(execution: JobExecution, msg: str, level: int = 3):
3333
)
3434

3535

36-
def _commandline_arguments(job: Job, execution: JobExecution, creds: BaseJobCredentials) -> str:
36+
def _commandline_arguments(job: Job, execution: JobExecution, creds: (BaseJobCredentials, None)) -> str:
3737
cmd_arguments = []
3838
if is_set(job.cmd_args):
3939
cmd_arguments.append(job.cmd_args)
@@ -57,20 +57,21 @@ def _commandline_arguments(job: Job, execution: JobExecution, creds: BaseJobCred
5757
else:
5858
_exec_log(execution=execution, msg='Ignoring known_hosts file because it does not exist', level=5)
5959

60-
if is_set(creds.become_pass):
61-
cmd_arguments.append('--ask-become-pass')
60+
if is_set(creds):
61+
if is_set(creds.become_pass):
62+
cmd_arguments.append('--ask-become-pass')
6263

63-
if is_set(creds.become_user):
64-
cmd_arguments.append(f'--become-user {creds.become_user}')
64+
if is_set(creds.become_user):
65+
cmd_arguments.append(f'--become-user {creds.become_user}')
6566

66-
if is_set(creds.connect_pass):
67-
cmd_arguments.append('--ask-pass')
67+
if is_set(creds.connect_pass):
68+
cmd_arguments.append('--ask-pass')
6869

69-
if is_set(creds.connect_user):
70-
cmd_arguments.append(f'--user {creds.connect_user}')
70+
if is_set(creds.connect_user):
71+
cmd_arguments.append(f'--user {creds.connect_user}')
7172

72-
if is_set(creds.vault_pass):
73-
cmd_arguments.append('--ask-vault-pass')
73+
if is_set(creds.vault_pass):
74+
cmd_arguments.append('--ask-vault-pass')
7475

7576
return ' '.join(cmd_arguments)
7677

@@ -129,7 +130,7 @@ def _execution_or_job(job: Job, execution: JobExecution, attr: str):
129130

130131

131132
def _runner_options(
132-
job: Job, execution: JobExecution, path_run: Path, project_dir: str, creds: BaseJobCredentials,
133+
job: Job, execution: JobExecution, path_run: Path, project_dir: str, creds: (BaseJobCredentials, None),
133134
) -> dict:
134135
verbosity = None
135136
if execution.verbosity != 0:

src/ansibleguy-webui/aw/utils/util_no_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ def is_null(data) -> bool:
1515
return str(data).strip() == ''
1616

1717

18-
def is_set(data: str) -> bool:
18+
def is_set(data) -> bool:
1919
return not is_null(data)

0 commit comments

Comments
 (0)