systemd-nspawn is similar to a chroot tool and depends on dbus.<br />
<br />
When launched it should read/write a *.socket file. It looks here<br />
/run/dbus/system_bus_socket<br />
<br />
The actual file is in /var/run/, so solution is this tweak:<br />
<br />
--------------- in /etc/rc.local ------------<br />
if [ ! -f /run/dbus/system_bus_socket ]; then<br />
mkdir -p /run/dbus<br />
LST=`pwd`<br />
cd /run/dbus<br />
ln -s /var/run/dbus/system_bus_socket system_bus_socket<br />
cd $LST<br />
fi<br />
---------------- snip --------
↧