mirror of
https://github.com/systemd/systemd.git
synced 2025-02-09 13:57:42 +03:00
12 lines
323 B
Plaintext
12 lines
323 B
Plaintext
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
set -eux
|
||
|
|
||
|
mkdir -p "$BUILDROOT/var/lib/app1"
|
||
|
|
||
|
cat >>"$BUILDROOT/usr/lib/os-release" <<EOF
|
||
|
MARKER=2
|
||
|
PORTABLE_PREFIXES=app0 minimal minimal-app0
|
||
|
EOF
|
||
|
cp "$BUILDROOT/usr/lib/systemd/system/minimal-app0.service" "$BUILDROOT/usr/lib/systemd/system/minimal-app0-bar.service"
|