mirror of
https://github.com/systemd/systemd.git
synced 2025-01-21 22:04:01 +03:00
11 lines
209 B
Bash
11 lines
209 B
Bash
|
#!/usr/bin/env bash
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
if [[ ! -f "/succeeds-on-restart.ko" ]]
|
||
|
then
|
||
|
touch "/succeeds-on-restart.ko"
|
||
|
exit 1
|
||
|
else
|
||
|
rm "/succeeds-on-restart.ko"
|
||
|
exit 0
|
||
|
fi
|