Skip to content

Instantly share code, notes, and snippets.

@fiji-flo
Created July 19, 2018 19:29
Show Gist options
  • Save fiji-flo/556786fec8b1960c5994b377917fea0b to your computer and use it in GitHub Desktop.
Save fiji-flo/556786fec8b1960c5994b377917fea0b to your computer and use it in GitHub Desktop.

Firefox is no longer supporting disabling the auto update feature via about:config. Previously there was a setting app-update.enabled which could be set via a vendor.js file.

This was moved to the policy engine in Bug 1420514.

Since I'm managing Firefox Nightly with my package manager I wanted to disable auto update again.

In order to do this simply create a directory called distribution in within you Firefox installation directory. Then create a file named policies.json with the following content:

{
 "policies": {
   "DisableAppUpdate": true
 }
}

in that directory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment