mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-30 13:34:15 +00:00
14 lines
250 B
Bash
Executable File
14 lines
250 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -ex
|
|
set -o pipefail
|
|
|
|
systemd-analyze log-level debug
|
|
|
|
systemctl enable test-honor-first-shutdown.service
|
|
systemctl start test-honor-first-shutdown.service
|
|
|
|
echo OK >/testok
|
|
|
|
exit 0
|