2022-01-12 18:38:32 -03:00
|
|
|
#!/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.
|
|
|
|
|
|
2022-02-16 15:36:29 +00:00
|
|
|
/usr/lib/kdump/submit-report.sh & disown
|
2022-01-12 18:38:32 -03:00
|
|
|
exit 0
|