mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 13:36:58 +02:00
8 lines
248 B
Bash
Executable File
8 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
rootfs="${1}"
|
|
|
|
mkdir -p "${rootfs}/usr/lib/systemd/system/multi-user.target.d"
|
|
{ echo "[Unit]"; echo "Upholds=containerd.service"; } > "${rootfs}/usr/lib/systemd/system/multi-user.target.d/10-containerd-service.conf"
|