calamares/settings.conf

44 lines
1.4 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.
2014-07-16 16:11:07 +02:00
modules-search: [ local, /path/to/dir/with/more/modules ]
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.
# 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:
- greeting
- locale
- keyboard
2014-07-23 14:33:08 +02:00
- partition
- 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-07-14 16:23:39 +02:00
- dummyprocess
2014-07-16 16:11:07 +02:00
- dummypython
2014-07-23 14:33:08 +02:00
- partition
- mount
2014-07-12 14:34:42 +02:00
#- unsquashfs
- locale
- keyboard
2014-07-12 14:34:42 +02:00
#- users
# 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.
postinstall: #TODO: actually use this
- finished