Artem Senichev | efd5d74 | 2018-10-24 16:14:04 +0300 | [diff] [blame] | 1 | #!/bin/bash |
2 | # | ||||
3 | # config: 123 20 | ||||
4 | # @brief: Collect host's logs | ||||
5 | # | ||||
6 | |||||
7 | . $DREPORT_INCLUDE/functions | ||||
8 | |||||
9 | desc="Logs from host" | ||||
10 | file_name="/var/lib/obmc/hostlogs" | ||||
11 | |||||
12 | # Flush currently collected messages | ||||
13 | busctl --no-pager --verbose call \ | ||||
14 | xyz.openbmc_project.HostLogger /xyz/openbmc_project/HostLogger \ | ||||
15 | xyz.openbmc_project.HostLogger Flush | ||||
16 | |||||
17 | add_copy_file "$file_name" "$desc" |