14 lines
342 B
Bash
Executable File
14 lines
342 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# Copyright (c) 2021 Valve.
|
|
#
|
|
# This is a dummy script (for now) that aims to submit error/crash
|
|
# reports to Valve servers in order to do a post-mortem analysis.
|
|
# This is part of SteamOS kdump - it is invoked by systemd on boot time
|
|
# and for now it just graciously exits.
|
|
#
|
|
|
|
exit 0
|