mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
14 lines
232 B
Bash
Executable File
14 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
set -o pipefail
|
|
|
|
systemd-analyze log-level debug
|
|
systemd-analyze log-target console
|
|
|
|
systemctl enable test-honor-first-shutdown.service
|
|
systemctl start test-honor-first-shutdown.service
|
|
|
|
echo OK >/testok
|
|
|
|
exit 0
|