@@ -1688,7 +1688,7 @@ def setup_term(self, system, pty, ssh_obj=None, block=0):
1688
1688
# Ctrl-L may cause a esc[J (erase) character to appear in the buffer.
1689
1689
# Include this in the patterns that expect $ (end of line)
1690
1690
rc = pty .expect (['login: (\x1b \[J)*$' , ".*#(\x1b \[J)*$" , ".*# (\x1b \[J)*$" , ".*\$(\x1b \[J)*" ,
1691
- "~>(\x1b \[J)" , "~ #(\x1b \[J)" , ":~(\x1b \[J)* " , 'Petitboot' , pexpect .TIMEOUT , pexpect .EOF ], timeout = 30 )
1691
+ "~>(\x1b \[J)" , "~ #(\x1b \[J)" , ":~(\x1b \[J)" , 'Petitboot' , pexpect .TIMEOUT , pexpect .EOF ], timeout = 30 )
1692
1692
if rc == 0 :
1693
1693
track_obj .PS1_set , track_obj .LOGIN_set = self .get_login (
1694
1694
system_obj .cv_HOST , term_obj , pty , self .build_prompt (system_obj .prompt ))
@@ -1807,7 +1807,7 @@ def handle_password(self, term_obj, pty, command):
1807
1807
raise CommandFailed (command , '' .join (failure_list_output ), - 1 )
1808
1808
return list_output , echo_rc
1809
1809
1810
- def run_command (self , term_obj , command , timeout = 600 , retry = 5 ):
1810
+ def run_command (self , term_obj , command , timeout = 60 , retry = 0 ):
1811
1811
# retry=0 will perform one pass
1812
1812
counter = 0
1813
1813
while counter <= retry :
@@ -2159,6 +2159,8 @@ def gather_os_logs(self, list_of_files=[], list_of_commands=[], collect_sosrepor
2159
2159
2160
2160
def __gather_os_files_logs (self , list_of_files = [], output_dir = None ):
2161
2161
host = self .conf .host ()
2162
+ if self .distro_name () == 'rhel' :
2163
+ host .host_run_command ("yum install rsyslog -y"
2162
2164
default_files = ['/var/log/messages' , '/var/log/boot.log' ]
2163
2165
list_of_files .extend (default_files )
2164
2166
@@ -2191,6 +2193,7 @@ def __gather_os_command_logs(self, list_of_commands=[], collect_sosreport=False,
2191
2193
2192
2194
if collect_sosreport :
2193
2195
if 'rhel' in self .distro_name ():
2196
+ host .host_run_command ("yum install sos -y" )
2194
2197
cmd = 'yes "" | sosreport'
2195
2198
str_msg = "Your sosreport has been generated and saved in:"
2196
2199
elif 'sles' in self .distro_name ():
@@ -2316,10 +2319,7 @@ def get_distro_src(self, package, dest_path, build_option=None, pack_dir=None):
2316
2319
2317
2320
elif self .distro_name () == 'sles' :
2318
2321
host .host_run_command ("zypper install -y rpm-build" )
2319
- if package .startswith ("kernel" ):
2320
- s_cmd = f"zypper -n source-install kernel-source;cd /usr/src/packages/SOURCES/;./mkspec;cp { package } .spec ../SPECS/"
2321
- else :
2322
- s_cmd = f"zypper -n source-install { package } ;cd /usr/src/packages/SOURCES/;./mkspec;cp { package } .spec ../SPECS/"
2322
+ s_cmd = f"zypper -n source-install { package } ;cd /usr/src/packages/SOURCES/;./mkspec;cp { package } .spec ../SPECS/"
2323
2323
if host .host_run_command (s_cmd ):
2324
2324
2325
2325
spec_path = f"/usr/src/packages/SPECS/{ package } .spec"
@@ -2574,12 +2574,6 @@ def login(self, username=None, password=None):
2574
2574
self .xAuthHeader ['X-Auth-Token' ] = match .group (1 )
2575
2575
self .jsonHeader .update (self .xAuthHeader )
2576
2576
json_data = json .loads (r .text )
2577
- if json_data .get ('token' ):
2578
- json_data = {
2579
- "data" : "User '%s' logged in" % username ,
2580
- "message" : "200 OK" ,
2581
- "status" : "ok"
2582
- }
2583
2577
log .debug ("r.status_code={} json_data['status']={}"
2584
2578
" r.text={} r.headers={} r.request.headers={}"
2585
2579
.format (r .status_code , json_data ['status' ],
0 commit comments