Add settings for allowing VPN access in lxc

This commit is contained in:
Manuel Thalmann 2024-11-10 12:56:48 +01:00
parent 442630560e
commit 0df5fe4cbf

View file

@ -15,7 +15,11 @@ begin
"lxc.apparmor.profile = unconfined" \
"" \
"# Shared Folder" \
"lxc.mount.entry = $(realpath "$dir/../..") $valhallaRoot none bind 0 0"
"lxc.mount.entry = $(realpath "$dir/../..") $valhallaRoot none bind 0 0" \
"" \
"# VPN" \
"lxc.cgroup.devices.allow = c 10:200 rwm"
"lxc.mount.entry = /dev/net dev/net none bind,create=dir 0 0"
end | sudo tee -a "$containerDir/config" > /dev/null
sudo lxc-start "$container"