How do I programmatically disable "Connectivity Checking"?
There is a flag in the file /var/lib/NetworkManager/NetworkManager-intern.conf
that is set to false if you disable the setting in the UI:
[connectivity]
.set.enabled=false
You can use the tool crudini
to set the flag using the command line or a script:
sudo crudini --set /var/lib/NetworkManager/NetworkManager-intern.conf "connectivity" ".set.enabled" "false"
For some reason the ui doesn't get updated until a reboot (didn't test logoff/login). Maybe there is some other command line tool that does the change and ensures that the UI gets updated as well.
btw: I used the following command to get the files that changed recently (only checked /var and ~ so far):
sudo find /var -newermt "-1 minute" -ls
There aren't any changes to gsettings. I monitored the settings using this command:
dconf watch /
I just wanted to add that you can also disable the connectivity checking by simply creating an empty file:
sudo touch /etc/NetworkManager/conf.d/20-connectivity-ubuntu.conf
This file will override any settings found in /usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf
.