Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion zthin-parts/zthin/bin/IUCV/iucvserverdaemoninstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function installIucvserver {
COPY_SERVICE_CMD="cp iucvserd /etc/init.d/"
REGISTER_SERVICE_CMD="chkconfig --add iucvserd"
START_SERVICE_CMD="service iucvserd start"
elif [[ $os == ubuntu* || $os == rhel7* || $os == rhel8* || $os == rhel9* ]]; then
elif [[ $os == ubuntu* || $os == rhel7* || $os == rhel8* || $os == rhel9* || $os == rhel10* ]]; then
COPY_SERVICE_CMD="cp iucvserd.service /lib/systemd/system/"
REGISTER_SERVICE_CMD="systemctl enable iucvserd.service"
START_SERVICE_CMD="systemctl start iucvserd.service"
Expand Down
5 changes: 4 additions & 1 deletion zvmsdk/dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,9 @@ def get_volume_detach_configuration_cmds(self, fcp_list, target_wwpns,
class rhel9(rhel8):
pass

class rhel10(rhel8):
pass


class rhcos(LinuxDist):
def create_coreos_parameter(self, network_info, userid=''):
Expand Down Expand Up @@ -1498,7 +1501,7 @@ def get_linux_dist(self, os_version):
return globals()[distro + release]

def _parse_release(self, os_version, distro, remain):
supported = {'rhel': ['6', '7', '8', '9'],
supported = {'rhel': ['6', '7', '8', '9','10'],
'sles': ['11', '12', '15'],
'ubuntu': ['16', '20', '22', '24', '25'],
'rhcos': ['4']}
Expand Down
2 changes: 1 addition & 1 deletion zvmsdk/sdkwsgi/validation/parameter_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def valid_char(char):
'oneOf': [
{'type': 'string',
'pattern':
'^((r|R)(h|H)(e|E)(l|L))(6|7|8|9){1}([.][0-9]{1,2})?$'},
'^((r|R)(h|H)(e|E)(l|L))(6|7|8|9|10){1}([.][0-9]{1,2})?$'},
{'type': 'string',
'pattern':
'^((r|R)(e|E)(d|D)(h|H)(a|A)(t|T))(6|7){1}([.][0-9]{1,2})?$'},
Expand Down
Loading