Files
kdumpst/submitter_load.sh
Guilherme G. Piccoli 0c45a7f988 Make submitter_load.sh executable
Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
2023-03-31 15:34:42 -03:00

13 lines
328 B
Bash
Executable File

#!/bin/sh
#
# SPDX-License-Identifier: LGPL-2.1+
#
# Copyright (c) 2022 Valve.
#
# This is the systemd loader for the SteamOS kdump log submitter;
# it's invoked by systemd, basically it just loads a detached
# process and exits successfuly, in order to prevent boot hangs.
/usr/lib/kdump/submit_report.sh & disown
exit 0