xref: /openbmc/openpower-debug-collector/dump/tools/bmcdump/plugins/obmcconsole1 (revision 24226c4f3fbd0c0b3aa4319527ffc1f88ce7dc43)
1*24226c4fSGopichand Paturi#!/usr/bin/env bash
2*24226c4fSGopichand Paturi#
3*24226c4fSGopichand Paturi# config: 2 25
4*24226c4fSGopichand Paturi# @brief: Collect OBMC console1 log.
5*24226c4fSGopichand Paturi#
6*24226c4fSGopichand Paturi
7*24226c4fSGopichand Paturi. $DREPORT_INCLUDE/functions
8*24226c4fSGopichand Paturi
9*24226c4fSGopichand Paturidesc="OBMC console1 log"
10*24226c4fSGopichand Paturifile_name="/var/log/obmc-console1.log"
11*24226c4fSGopichand Paturiif [ -e $file_name ]; then
12*24226c4fSGopichand Paturi    add_copy_file "$file_name" "$desc"
13*24226c4fSGopichand Paturifi
14