calamares/settings.conf

86 lines
2.7 KiB
Plaintext
Raw Normal View History

2014-06-13 16:59:53 +02:00
# Configuration file for Calamares
# Syntax is YAML 1.2
---
# Modules can be job modules (with different interfaces) and QtWidgets view modules.
2014-06-13 16:59:53 +02:00
# They could all be placed in a number of different paths.
# "modules-search" is a list of strings, each of these can either be a full path to a
# directory or the keyword "local".
# "local" means LIBDIR/calamares/modules with settings in SHARE/calamares/modules or
# /etc/calamares/modules.
modules-search: [ local ]
2014-06-13 16:59:53 +02:00
# We define the module names in the order they should show up (QtWidget view modules,
2014-06-13 16:59:53 +02:00
# with one or more pages) OR be executed if enqueued (all other modules).
# Pages can also enqueue jobs for delayed execution in the order specified for the
# install phase, so a viewmodule name can appear in more than one phase.
# Phase 1 - prepare.
# View modules are shown as UI pages, jobs from job modules are executed immediately in
# the background.
# Jobs should be executed sparingly (if at all) in this phase.
prepare:
- welcome
2015-09-14 17:47:43 +02:00
- license
- locale
- keyboard
2014-07-23 14:33:08 +02:00
- partition
2014-08-06 17:16:40 +02:00
- users
2015-09-14 17:47:43 +02:00
- webview
- summary
# Phase 2 - install.
# View modules are not shown. Only the view modules shown in the previous phase are
# allowed, their names should be added here as placeholders to specify the order in
# which view module jobs should be enqueued. Job modules are also allowed.
install:
2014-08-06 17:16:40 +02:00
#- dummyprocess
#- dummypython
2014-07-23 14:33:08 +02:00
- partition
- mount
- unpackfs
- machineid
- fstab
- locale
- keyboard
- localecfg
- initcpiocfg
- initcpio
2014-08-06 17:16:40 +02:00
- users
2015-06-10 02:09:05 +02:00
- displaymanager
2014-08-13 18:14:46 +02:00
- networkcfg
- hwclock
- services
#- dracut
2015-06-10 02:22:25 +02:00
#- initramfs
2014-08-19 14:57:22 +02:00
- grubcfg
- bootloader
2014-07-24 13:51:14 +02:00
- umount
# Phase 3 - postinstall.
# View modules are shown as UI pages, jobs from job modules are executed immediately in
# the background.
# Jobs should be executed sparingly (if at all) in this phase.
2015-01-29 13:49:40 +01:00
postinstall:
- finished
# A branding component is a directory, either in SHARE/calamares/branding or in
# /etc/calamares/branding (the latter takes precedence). The directory must contain a
# YAML file branding.desc which may reference additional resources (such as images or QML)
# as paths relative to the current directory.
# Only the name of the branding component (directory) should be specified here, Calamares
# then takes care of finding it and loading the contents.
2014-11-07 15:26:52 +01:00
branding: default
2015-04-10 12:38:23 +02:00
# If this is set to true, Calamares will show an "are you sure?" prompt right before the
# install phase, i.e. at the point of no return. If it's false, no prompt is shown.
# Default is false.
prompt-install: false
# If this is set to true, all target environment calls will be executed on the current
# (host) system rather than on the target (chrooted) system.
# Only set this to true in exceptional circumstances, if you are not using Calamares as
# a system installer.
# Default is false.
dont-chroot: false