mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-24 04:35:11 +02:00
9 lines
246 B
Bash
Executable file
9 lines
246 B
Bash
Executable file
#!/bin/sh
|
|
_systemd_cgrp="/sys/fs/cgroup/systemd"
|
|
if [ ! -d ${_systemd_cgrp} ]; then
|
|
mkdir ${_systemd_cgrp}
|
|
fi
|
|
if ! mountpoint -q "${_systemd_cgrp}"; then
|
|
mount -t cgroup -o none,name=systemd cgroup ${_systemd_cgrp}
|
|
fi
|
|
exec lxd --group lxd 2>&1
|