Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tmt/guest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2811,7 +2811,11 @@ class GuestSshData(GuestData):
default=DEFAULT_USER,
option=('-u', '--user'),
metavar='NAME',
help='A username to use for all guest operations.',
help="""
Username to use when connecting to the guest via SSH. Unless
``become`` is used, tests and other user-provided commands
will be invoked under this user account.
""",
)
key: list[Path] = field(
default_factory=list,
Expand Down
8 changes: 7 additions & 1 deletion tmt/steps/provision/podman.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ class PodmanGuestData(tmt.guest.GuestData):
default=DEFAULT_USER,
option=('-u', '--user'),
metavar='USERNAME',
help='Username to use for all guest operations.',
help="""
Username to pass to ``podman run`` command when starting the
container representing the guest. It will override ``USER``
directive from the image. Unless ``become`` is used, tests
and other user-provided commands will be invoked under this
user account.
""",
)
force_pull: bool = field(
default=False,
Expand Down
Loading