From 36e553092f02ccaa322c2ef15d9ffdf6fbb2b266 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Thu, 22 Jan 2026 14:09:12 -0500 Subject: [PATCH] changed Enum options for Software --- custtypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custtypes.py b/custtypes.py index 625c300..bb57fc8 100644 --- a/custtypes.py +++ b/custtypes.py @@ -56,8 +56,8 @@ class GroupName(StrEnum): sudo = auto() class Software(StrEnum): - ssh = auto() - sshd = auto() + openssh_client = auto() + openssh_server = auto() class SoftwareRoles(StrEnum): client = auto()