Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes #137

Merged
merged 2 commits into from
Nov 28, 2024
Merged
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
1 change: 1 addition & 0 deletions sssd_test_framework/hosts/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"BaseHost",
"BaseDomainHost",
"BaseLDAPDomainHost",
"BaseLinuxHost",
]


Expand Down
4 changes: 2 additions & 2 deletions sssd_test_framework/hosts/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""IPA multihost host."""
"""Client multihost host."""

from __future__ import annotations

Expand Down Expand Up @@ -83,7 +83,7 @@ def start(self) -> None:
:raises NotImplementedError: _description_
"""
# SSSD might not be configured properly at this time. We start and stop SSSD in tests.
raise NotImplementedError("Starting Active Directory service is not implemented.")
raise NotImplementedError("Starting Client service is not implemented.")

def stop(self) -> None:
self.svc.stop("sssd.service")
Expand Down
2 changes: 1 addition & 1 deletion sssd_test_framework/utils/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def FromOutput(cls, stdout: str) -> IdEntry:

class PasswdEntry(object):
"""
Result of ``getent group``
Result of ``getent passwd``
"""

def __init__(self, name: str, password: str, uid: int, gid: int, gecos: str, home: str, shell: str) -> None:
Expand Down
Loading