mrrl-containers

MRRL version of container scripts
git clone https://ccx.te2000.cz/git/mrrl-containers
Log | Files | Refs

commit e5c93f1e471580f6fd0a93655d04ca92e1841180
parent 0a13123bdaf6331fa70a4728d3477b5fcb79f426
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date:   Fri, 18 Dec 2020 06:34:09 +0100

Fix the netmask.
Diffstat:
Mservice_scripts/xsession/run | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/service_scripts/xsession/run b/service_scripts/xsession/run @@ -31,7 +31,7 @@ env NS_EXTRA="if { mount -o bind,ro /etc/passwd etc/passwd } if { mount -o bind,ro /etc/group etc/group }" unshare -n # make new network namespace -if { ip addr add 127.0.0.1/24 dev lo } +if { ip addr add 127.0.0.1/8 dev lo } if { ip addr add ::1/128 dev lo } if { ip link set lo up }