]> glassweightruler.freedombox.rocks Git - waydroid.git/blobdiff - tools/config/__init__.py
Ensure default umask to avoid surprises with file permissions.
[waydroid.git] / tools / config / __init__.py
index 2f726d6220855f423ad55211e07903048afb9a59..002562eab4dabe815121fb9a4cc2ba01285b301b 100644 (file)
@@ -12,7 +12,7 @@ from tools.config.save import save
 #
 # Exported variables (internal configuration)
 #
-version = "1.4.1"
+version = "1.4.2"
 tools_src = os.path.normpath(os.path.realpath(__file__) + "/../../..")
 
 # Keys saved in the config file (mostly what we ask in 'waydroid init')
@@ -22,7 +22,8 @@ config_keys = ["arch",
                "system_datetime",
                "vendor_datetime",
                "suspend_action",
-               "mount_overlays"]
+               "mount_overlays",
+               "auto_adb"]
 
 # Config file/commandline default values
 # $WORK gets replaced with the actual value for args.work (which may be
@@ -39,6 +40,7 @@ defaults = {
     ],
     "suspend_action": "freeze",
     "mount_overlays": "True",
+    "auto_adb": "True",
 }
 defaults["images_path"] = defaults["work"] + "/images"
 defaults["rootfs"] = defaults["work"] + "/rootfs"