xref: /openbmc/phosphor-debug-collector/tools/dreport.d/openpower.d/plugins.d/obmcconsole1 (revision 6f4870aadc658c2af64370ec05c49a71a4aa311e)
1#!/usr/bin/env bash
2#
3# config: 2 25
4# @brief: Collect OBMC console1 log.
5#
6
7. $DREPORT_INCLUDE/functions
8
9desc="OBMC console1 log"
10file_name="/var/log/obmc-console1.log"
11if [ -e $file_name ]; then
12    add_copy_file "$file_name" "$desc"
13fi
14