Skip to content

Commit

Permalink
Added RHEL10 Support in script
Browse files Browse the repository at this point in the history
Added RHEL10 Support in script

Signed-off-by: Praveen K Pandey <[email protected]>
  • Loading branch information
PraveenPenguin committed Aug 7, 2024
1 parent 0dc96e7 commit 71b0e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def createKickstart(self):
host_disk += '/dev/disk/by-id/' + disk+','
vmParser.args.host_disk = host_disk.rstrip(',')

if version.startswith('8') or version.startswith('9'):
if version.startswith('8') or version.startswith('9') or version.startswith('10'):
lstr = "%end"
urlstring = "--url=http://"+vmParser.confparser('repo', 'RepoIP') + ':' + vmParser.confparser('repo', 'RepoPort') + \
self.repoDir + "/BaseOS"
Expand Down

0 comments on commit 71b0e37

Please sign in to comment.