Skip to content

Commit cf1b31b

Browse files
committed
scripts/config: update comments
this module now will auto-disable use_mountify script if mountify is already installed and will mount this module
1 parent 92b02b3 commit cf1b31b

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

module/config.sh

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
11
# uninstall fallback if app ain't nuked on late service
2-
# this executes: pm uninstall -k --user 0
3-
# only runs if the app still exists after on late-service
2+
# this runs: pm uninstall -k --user 0
3+
# only triggers if the app still exists after late-service
44
# default is false
55
uninstall_fallback=false
66

7-
# mount the module globally with mountify standalone script
8-
# requires **TMPFS_XATTR** or **OverlayFS manager**
9-
# this is auto-enabled during install if the environment supports it
10-
# DO NOT enable this manually unless you're sure the enviromentment is supported
7+
# mount the module globally using the standalone mountify script
8+
# needs either **TMPFS_XATTR** support or the OverlayFS manager
9+
# auto-enabled during install if the env can handle it
10+
# if mountify's already installed and will mount this module, this gets auto-disabled
11+
# DO NOT flip this manually unless you're sure the env supports it
1112
use_mountify_script=false
1213

1314
# refresh (regenerate) the app list cache every boot
14-
# this is set to true by default to ensure correct app list when it is changing
15+
# default is true to make sure app list stays accurate when things change
1516
refresh_applist=true
1617

1718
# ----
1819
# ⚠️ DO NOT EDIT BELOW THIS LINE
19-
# configuration(s) after this are env-specific nor not meant to be edited
20-
# these values are auto-set and may break things if changed manually
20+
# config(s) below are env-specific or not meant to be touched
21+
# these are auto-set and might break stuff if changed manually
2122
# ----
2223

23-
# mounting system (true = manager is magic mount)
24+
# mounting system
25+
# (true = manager is magic mount)
26+
# (false = manager is overlayfs)
2427
magic_mount=true
2528

26-
# EOF
29+
# EOF

0 commit comments

Comments
 (0)