Skip to content

Commit

Permalink
fixing changes to console detection after hercules changed the way it…
Browse files Browse the repository at this point in the history
… reports
  • Loading branch information
mainframed committed Oct 6, 2023
1 parent b087385 commit 3a3635c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sysgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def step_01_build_starter(self):
self.set_configs('build_starter')
self.send_herc("ipl 280")
self.send_herc("/")
self.wait_for_string('HHC00010A Enter input for console 0:0009')
self.wait_for_string('input for console 0:0009')
self.print("[1/4] DASDI Initialization of the START1 DASD volume")
logging.debug("Submitting instart1.sajob")
self.send_oper("input=1442,00c")
Expand All @@ -492,7 +492,7 @@ def step_01_build_starter(self):
self.send_herc("ipl 280")
self.wait_for_psw('FFFF')
self.send_herc("/")
self.wait_for_string('HHC00010A Enter input for console 0:0009')
self.wait_for_string('input for console 0:0009')
self.print("[2/4] Performing restore of the START1 DASD volume")
logging.debug("Submitting rsstart1.sajob")
self.send_oper("input=1442,00d")
Expand All @@ -503,7 +503,7 @@ def step_01_build_starter(self):
self.send_herc("ipl 281")
self.wait_for_psw('FFFF')
self.send_herc("/")
self.wait_for_string('HHC00010A Enter input for console 0:0009')
self.wait_for_string('input for console 0:0009')
self.print("[3/4] DASDI Initialization of the SPOOL0 DASD volume")
logging.debug("Submitting inspool0.sajob")
self.send_oper("input=1442,00e")
Expand All @@ -514,7 +514,7 @@ def step_01_build_starter(self):
self.send_herc("ipl 281")
self.wait_for_psw('FFFF')
self.send_herc("/")
self.wait_for_string('HHC00010A Enter input for console 0:0009')
self.wait_for_string('input for console 0:0009')
self.print("[4/4] Performing restore of the SPOOL0 DASD volume")
logging.debug("Submitting rsspool0.sajob")
self.send_oper("input=1442,00f")
Expand Down Expand Up @@ -1610,7 +1610,7 @@ def mvs000(self):
self.set_configs('customization')
#self.wait_for_string("0:0151 CKD")
self.send_herc("ipl 150")
self.wait_for_string("HHC00010A Enter input for console 0:0009")
self.wait_for_string("input for console 0:0009")
self.send_oper('r 0,clpa')
self.wait_for_string("IFB010D ENTER 'IPL REASON,SUBSYSTEM ID' OR 'U'")
self.send_reply('u')
Expand Down Expand Up @@ -1800,7 +1800,7 @@ def custjobs_ipl(self, step_text='', clpa=False):
self.set_configs('customization2')
#self.wait_for_string("0:0151 CKD")
self.send_herc("ipl 150")
self.wait_for_string("HHC00010A Enter input for console 0:0009")
self.wait_for_string("input for console 0:0009")
if clpa:
self.send_oper("r 0,clpa")
else:
Expand Down

0 comments on commit 3a3635c

Please sign in to comment.