mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-29 23:25:11 +02:00
11 lines
286 B
Bash
Executable file
11 lines
286 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
|
|
|
|
[ -r conf ] && . ./conf
|
|
exec lxd --group lxd ${OPTS:- --verbose}
|