Firefox package - prevent automatic updates
Published: February 12, 2019 - 09:41
Good morning,
I've noticed on my network that, since Firefox version 64, the update is once again being offered by Firefox. I still use the "config-for-firefox" package with a mozilla.cfg file that disables automatic updates. And I force its reinstallation in the Firefox packages
Extract from mozilla.cfg:
I've noticed on my network that, since Firefox version 64, the update is once again being offered by Firefox. I still use the "config-for-firefox" package with a mozilla.cfg file that disables automatic updates. And I force its reinstallation in the Firefox packages
Code: Select all
WAPT.forget_packages('dst-config-for-firefox')
WAPT.install('dst-config-for-firefox')Code: Select all
// Disable Auto Updates
pref("app.update.enabled", false);
pref("extensions.update.enabled", false);
pref("app.update.service.enabled", false);
lockPref("app.update.auto", false);
lockPref("app.update.mode", 0);