settings.conf 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. # Configuration file for Calamares
  2. # Syntax is YAML 1.2
  3. ---
  4. # Modules can be job modules (with different interfaces) and QtWidgets view
  5. # modules. They could all be placed in a number of different paths.
  6. # "modules-search" is a list of strings, each of these can either be a full
  7. # path to a directory or the keyword "local".
  8. #
  9. # "local" means:
  10. # - modules in $LIBDIR/calamares/moduleswith
  11. # - settings in SHARE/calamares/modules or /etc/calamares/modules.
  12. #
  13. # YAML: list of strings.
  14. modules-search: [ local ]
  15. # Instances section. This section is optional, and it defines custom instances
  16. # for modules of any kind. An instance entry has an instance name, a module
  17. # name, and a configuration file name. The primary goal of this mechanism is
  18. # to allow loading multiple instances of the same module, with different
  19. # configuration. If you don't need this, the instances section can safely be
  20. # left empty.
  21. #
  22. # Module name plus instance name makes an instance key, e.g.
  23. # "webview@owncloud", where "webview" is the module name (for the webview
  24. # viewmodule) and "owncloud" is the instance name, which loads a configuration
  25. # file named "owncloud.conf" from any of the configuration file paths,
  26. # including the webview module directory. This instance key can then be
  27. # referenced in the sequence section.
  28. #
  29. # For all modules without a custom instance specification, a default instance
  30. # is generated automatically by Calamares. Therefore a statement such as
  31. # "webview" in the sequence section automatically implies an instance key of
  32. # "webview@webview" even without explicitly defining this instance, and the
  33. # configuration file for this default instance "<modulename>@<modulename>" is
  34. # always assumed to be "<modulename>.conf".
  35. #
  36. # For more information on running module instances, run Calamares in debug
  37. # mode and check the Modules page in the Debug information interface.
  38. #
  39. # A module that is often used with instances is dummyprocess, which will
  40. # run a single (shell) command. By configuring more than one instance of
  41. # the module, multiple shell commands can be run during install.
  42. #
  43. # YAML: list of maps of string:string key-value pairs.
  44. #instances:
  45. #- id: owncloud
  46. # module: webview
  47. # config: owncloud.conf
  48. # Sequence section. This section describes the sequence of modules, both
  49. # viewmodules and jobmodules, as they should appear and/or run.
  50. #
  51. # A jobmodule instance key (or name) can only appear in an exec phase, whereas
  52. # a viewmodule instance key (or name) can appear in both exec and show phases.
  53. # There is no limit to the number of show or exec phases. However, the same
  54. # module instance key should not appear more than once per phase, and
  55. # deployers should take notice that the global storage structure is persistent
  56. # throughout the application lifetime, possibly influencing behavior across
  57. # phases. A show phase defines a sequence of viewmodules (and therefore
  58. # pages). These viewmodules can offer up jobs for the execution queue.
  59. #
  60. # An exec phase displays a progress page (with brandable slideshow). This
  61. # progress page iterates over the modules listed in the *immediately
  62. # preceding* show phase, and enqueues their jobs, as well as any other jobs
  63. # from jobmodules, in the order defined in the current exec phase.
  64. #
  65. # It then executes the job queue and clears it. If a viewmodule offers up a
  66. # job for execution, but the module name (or instance key) isn't listed in the
  67. # immediately following exec phase, this job will not be executed.
  68. #
  69. # YAML: list of lists of strings.
  70. sequence:
  71. - show:
  72. - welcome
  73. # - dummypythonqt
  74. - locale
  75. - keyboard
  76. - partition
  77. - users
  78. # - tracking
  79. - summary
  80. - exec:
  81. # - dummycpp
  82. # - dummyprocess
  83. # - dummypython
  84. # - dummypythonqt
  85. - partition
  86. - mount
  87. - unpackfs
  88. - machineid
  89. - fstab
  90. - locale
  91. - keyboard
  92. - localecfg
  93. # - luksbootkeyfile
  94. # - luksopenswaphookcfg
  95. # - dracutlukscfg
  96. # - plymouthcfg
  97. - initcpiocfg
  98. - initcpio
  99. - users
  100. - displaymanager
  101. - networkcfg
  102. - hwclock
  103. - services
  104. # - dracut
  105. - initramfs
  106. # - grubcfg
  107. - bootloader
  108. - umount
  109. - show:
  110. # - webview@owncloud
  111. - finished
  112. # A branding component is a directory, either in SHARE/calamares/branding or
  113. # in /etc/calamares/branding (the latter takes precedence). The directory must
  114. # contain a YAML file branding.desc which may reference additional resources
  115. # (such as images) as paths relative to the current directory.
  116. #
  117. # A branding component can also ship a QML slideshow for execution pages,
  118. # along with translation files.
  119. #
  120. # Only the name of the branding component (directory) should be specified
  121. # here, Calamares then takes care of finding it and loading the contents.
  122. #
  123. # YAML: string.
  124. branding: default
  125. # If this is set to true, Calamares will show an "Are you sure?" prompt right
  126. # before each execution phase, i.e. at points of no return. If this is set to
  127. # false, no prompt is shown. Default is false.
  128. #
  129. # YAML: boolean.
  130. prompt-install: false
  131. # If this is set to true, Calamares will execute all target environment
  132. # commands in the current environment, without chroot. This setting should
  133. # only be used when setting up Calamares as a post-install configuration tool,
  134. # as opposed to a full operating system installer.
  135. #
  136. # Some official Calamares modules are not expected to function with this
  137. # setting. (e.g. partitioning seems like a bad idea, since that is expected to
  138. # have been done already)
  139. #
  140. # Default is false (for a normal installer).
  141. #
  142. # YAML: boolean.
  143. dont-chroot: false