settings.conf 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. # Configuration file for Calamares
  2. # Syntax is YAML 1.2
  3. ---
  4. # "local" is LIBDIR/calamares/modules with settings in SHARE/calamares/modules
  5. modules-search: [ local, /usr/lib/calamares/modules ]
  6. # If this is set to true, Calamares refers to itself as a "setup program"
  7. # rather than an "installer". Defaults to the value of dont-chroot, but
  8. # Calamares will complain if this is not explicitly set.
  9. oem-setup: false
  10. # If this is set to true, the "Cancel" button will be disabled entirely.
  11. # The button is also hidden from view.
  12. #
  13. # This can be useful if when e.g. Calamares is used as a post-install
  14. # configuration tool and you require the user to go through all the
  15. # configuration steps.
  16. #
  17. # Default is false, but Calamares will complain if this is not explicitly set.
  18. #
  19. # YAML: boolean.
  20. disable-cancel: false
  21. # If this is set to true, the "Cancel" button will be disabled once
  22. # you start the 'Installation', meaning there won't be a way to cancel
  23. # the Installation until it has finished or installation has failed.
  24. #
  25. # Default is false, but Calamares will complain if this is not explicitly set.
  26. #
  27. # YAML: boolean.
  28. disable-cancel-during-exec: false
  29. # If this is set to true, then once the end of the sequence has
  30. # been reached, the quit (done) button is clicked automatically
  31. # and Calamares will close. Default is false: the user will see
  32. # that the end of installation has been reached, and that things are ok.
  33. #
  34. #
  35. quit-at-end: false
  36. sequence:
  37. # Phase 1 - prepare.
  38. # View modules are shown as UI pages, jobs from job modules
  39. # are executed immediately in the background.
  40. # Jobs should be executed sparingly (if at all) in this phase.
  41. - show:
  42. - welcome
  43. - locale
  44. - keyboard
  45. - partition
  46. - users
  47. - summary
  48. # Phase 2 - install.
  49. # View modules are not shown. Only the view modules shown
  50. # in the previous phase are allowed, their names should be
  51. # added here as placeholders to specify the order in which
  52. # view module jobs should be enqueued. Job modules are
  53. # also allowed.
  54. - exec:
  55. - partition
  56. - mount
  57. - unpackfs
  58. - sources-media
  59. - machineid
  60. - fstab
  61. - locale
  62. - keyboard
  63. - localecfg
  64. - users
  65. - displaymanager
  66. - networkcfg
  67. - hwclock
  68. - services-systemd
  69. - bootloader-config
  70. - grubcfg
  71. - bootloader
  72. - packages
  73. - luksbootkeyfile
  74. - plymouthcfg
  75. - initramfscfg
  76. - initramfs
  77. - sources-media-unmount
  78. - sources-final
  79. - umount
  80. # Phase 3 - postinstall.
  81. # View modules are shown as UI pages, jobs from job modules are
  82. # executed immediately in the background.
  83. # Jobs should be executed sparingly (if at all) in this phase.
  84. - show:
  85. - finished
  86. # A branding component is a directory, either in
  87. # SHARE/calamares/branding or in /etc/calamares/branding
  88. # (the latter takes precedence). The directory must contain a
  89. # YAML file branding.desc which may reference additional resources
  90. # (such as images) as paths relative to the current directory.
  91. # Only the name of the branding component (directory) should be
  92. # specified here, Calamares then takes care of finding it and
  93. # loading the contents.
  94. branding: debian
  95. # If this is set to true, Calamares will show an "Are you sure?" prompt right
  96. # before each execution phase, i.e. at points of no return. If this is set to
  97. # false, no prompt is shown. Default is false.
  98. #
  99. # YAML: boolean.
  100. prompt-install: false
  101. # If this is set to true, Calamares will execute all target environment
  102. # commands in the current environment, without chroot. This setting should
  103. # only be used when setting up Calamares as a post-install configuration tool,
  104. # as opposed to a full operating system installer.
  105. #
  106. # Some official Calamares modules are not expected to function with this
  107. # setting. (e.g. partitioning seems like a bad idea, since that is expected to
  108. # have been done already)
  109. #
  110. # Default is false (for a normal installer).
  111. #
  112. # YAML: boolean.
  113. dont-chroot: false