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