settings.conf 5.2 KB

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