2014-06-13 16:59:53 +02:00
|
|
|
# Configuration file for Calamares
|
|
|
|
# Syntax is YAML 1.2
|
|
|
|
---
|
2014-07-10 18:03:59 +02:00
|
|
|
# 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-10-10 18:09:26 +02:00
|
|
|
# "local" is LIBDIR/calamares/modules with settings in SHARE/calamares/modules
|
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
|
|
|
|
2014-07-10 18:03:59 +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).
|
2014-07-10 18:03:59 +02:00
|
|
|
# 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:
|
2014-07-08 18:28:04 +02:00
|
|
|
- greeting
|
|
|
|
- locale
|
|
|
|
- keyboard
|
2014-08-22 15:16:45 +02:00
|
|
|
- prepare
|
2014-07-23 14:33:08 +02:00
|
|
|
- partition
|
2014-08-06 17:16:40 +02:00
|
|
|
- users
|
2014-07-08 18:28:04 +02:00
|
|
|
- summary
|
|
|
|
|
2014-07-10 18:03:59 +02:00
|
|
|
# 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.
|
2014-07-22 16:54:34 +02:00
|
|
|
install:
|
2014-08-06 17:16:40 +02:00
|
|
|
#- dummyprocess
|
|
|
|
#- dummypython
|
2014-07-23 14:33:08 +02:00
|
|
|
- partition
|
|
|
|
- mount
|
2014-08-19 11:30:59 +02:00
|
|
|
- unpackfs
|
2014-07-28 14:59:22 +02:00
|
|
|
- fstab
|
2014-07-10 18:03:59 +02:00
|
|
|
- locale
|
|
|
|
- keyboard
|
2014-08-19 15:54:02 +02:00
|
|
|
- initcpiocfg
|
2014-08-15 22:10:22 +02:00
|
|
|
- initcpio
|
2014-08-06 17:16:40 +02:00
|
|
|
- users
|
2014-08-13 18:14:46 +02:00
|
|
|
- networkcfg
|
|
|
|
- hwclock
|
|
|
|
- services
|
2014-11-10 15:41:36 +01:00
|
|
|
# - initramfs
|
2014-11-13 13:56:20 +01:00
|
|
|
- localecfg
|
2014-08-19 14:57:22 +02:00
|
|
|
- grubcfg
|
2014-08-15 22:10:22 +02:00
|
|
|
- grub
|
2014-11-13 13:56:20 +01:00
|
|
|
#- bootloader
|
2014-07-24 13:51:14 +02:00
|
|
|
- umount
|
2014-07-10 18:03:59 +02:00
|
|
|
|
|
|
|
# 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
|
2014-07-08 18:28:04 +02:00
|
|
|
- finished
|
2014-10-10 18:09:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
# 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) 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
|