Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 0c0209cc authored by Robert Nelson's avatar Robert Nelson
Browse files

chroot: dont auto start dnsmasq.service


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent fe242083
No related merge requests found
...@@ -962,6 +962,11 @@ cat > "${DIR}/chroot_script.sh" <<-__EOF__ ...@@ -962,6 +962,11 @@ cat > "${DIR}/chroot_script.sh" <<-__EOF__
if [ -f /etc/systemd/system/network-online.target.wants/connman-wait-online.service ] ; then if [ -f /etc/systemd/system/network-online.target.wants/connman-wait-online.service ] ; then
systemctl disable connman-wait-online.service || true systemctl disable connman-wait-online.service || true
fi fi
#We manually start dnsmasq, usb0/SoftAp0 are not available till late in boot...
if [ -f /lib/systemd/system/dnsmasq.service ] ; then
systemctl disable dnsmasq.service || true
fi
} }
#cat /chroot_script.sh #cat /chroot_script.sh
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment