mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 23:21:22 +03:00
1b6f9b9880
This allows us to reuse bootctl install instead of replicating the logic in the build script.
7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
if [ "$1" = "final" ] && command -v bootctl > /dev/null; then
|
|
bootctl install
|
|
fi
|