12 lines
308 B
Bash
12 lines
308 B
Bash
#!/bin/bash
|
|||
|
|
set -uo pipefail
|
||
|
|
#
|
||
|
|
# SPDX-License-Identifier: LGPL-2.1+
|
||
|
|
#
|
||
|
|
# Copyright (c) 2021 Valve.
|
||
|
|
# Maintainer: Guilherme G. Piccoli <gpiccoli@igalia.com>
|
||
|
|
#
|
||
|
|
# This is the kdump/pstore log collector; this script prepares the
|
||
|
|
# collected data and save it in the local disk, in the next successful boot.
|
||
|
|
#
|