Skip to content

Commit 66cc912

Browse files
committed
Install sosreport package
Install the required packages for collecting sosreport Signed-off-by: Vaishnavi Bhat <[email protected]>
1 parent 0296a44 commit 66cc912

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

common/OpTestUtil.py

+6-12
Original file line numberDiff line numberDiff line change
@@ -1688,7 +1688,7 @@ def setup_term(self, system, pty, ssh_obj=None, block=0):
16881688
# Ctrl-L may cause a esc[J (erase) character to appear in the buffer.
16891689
# Include this in the patterns that expect $ (end of line)
16901690
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)
16921692
if rc == 0:
16931693
track_obj.PS1_set, track_obj.LOGIN_set = self.get_login(
16941694
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):
18071807
raise CommandFailed(command, ''.join(failure_list_output), -1)
18081808
return list_output, echo_rc
18091809

1810-
def run_command(self, term_obj, command, timeout=600, retry=5):
1810+
def run_command(self, term_obj, command, timeout=60, retry=0):
18111811
# retry=0 will perform one pass
18121812
counter = 0
18131813
while counter <= retry:
@@ -2159,6 +2159,8 @@ def gather_os_logs(self, list_of_files=[], list_of_commands=[], collect_sosrepor
21592159

21602160
def __gather_os_files_logs(self, list_of_files=[], output_dir=None):
21612161
host = self.conf.host()
2162+
if self.distro_name() == 'rhel':
2163+
host.host_run_command("yum install rsyslog -y"
21622164
default_files = ['/var/log/messages', '/var/log/boot.log']
21632165
list_of_files.extend(default_files)
21642166

@@ -2191,6 +2193,7 @@ def __gather_os_command_logs(self, list_of_commands=[], collect_sosreport=False,
21912193

21922194
if collect_sosreport:
21932195
if 'rhel' in self.distro_name():
2196+
host.host_run_command("yum install sos -y")
21942197
cmd = 'yes "" | sosreport'
21952198
str_msg = "Your sosreport has been generated and saved in:"
21962199
elif 'sles' in self.distro_name():
@@ -2316,10 +2319,7 @@ def get_distro_src(self, package, dest_path, build_option=None, pack_dir=None):
23162319

23172320
elif self.distro_name() == 'sles':
23182321
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/"
23232323
if host.host_run_command(s_cmd):
23242324

23252325
spec_path = f"/usr/src/packages/SPECS/{package}.spec"
@@ -2574,12 +2574,6 @@ def login(self, username=None, password=None):
25742574
self.xAuthHeader['X-Auth-Token'] = match.group(1)
25752575
self.jsonHeader.update(self.xAuthHeader)
25762576
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-
}
25832577
log.debug("r.status_code={} json_data['status']={}"
25842578
" r.text={} r.headers={} r.request.headers={}"
25852579
.format(r.status_code, json_data['status'],

0 commit comments

Comments
 (0)