mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 14:55:37 +03:00
7 lines
141 B
Plaintext
7 lines
141 B
Plaintext
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
|
||
|
if [ "$1" = "final" ] && command -v bootctl > /dev/null; then
|
||
|
bootctl install
|
||
|
fi
|