Skip to content

Commit

Permalink
Merge branch '4495-dtt1-release' into fix/5210-Fixing-yaml-examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-akim committed Apr 15, 2024
2 parents 318679a + fb7f85d commit ec5b4de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployability/modules/testing/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This program is a free software; you can redistribute it and/or modify it under the terms of GPLv2

import json
import os
import getpass

from modules.generic import Ansible, Inventory
from modules.generic.utils import Utils
Expand Down Expand Up @@ -50,7 +50,7 @@ def run(cls, payload: InputPayload) -> None:

# Set extra vars
extra_vars['local_host_path'] = str(Path(__file__).parent.parent.parent)
extra_vars['current_user'] = os.getlogin()
extra_vars['current_user'] = getpass.getuser()

logger.debug(f"Using extra vars: {extra_vars}")

Expand Down

0 comments on commit ec5b4de

Please sign in to comment.