OSDN Git Service

Merge pull request #60 from toudi/list-system-dependencies
[alterlinux/alterlinux-calamares.git] / settings.conf
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: [ local, /path/to/dir/with/more/modules ]
7
8 # We define the module names in the order they should show up (QtWidget view modules,
9 # with one or more pages) OR be executed if enqueued (all other modules).
10 # Pages can also enqueue jobs for delayed execution in the order specified for the
11 # install phase.
12
13 # Phase 1 - prepare.
14 # View modules are shown as UI pages, jobs from job modules are executed immediately in
15 # the background.
16 # Jobs should be executed sparingly (if at all) in this phase.
17 prepare:
18 - greeting
19 - locale
20 - keyboard
21 - partition
22 - users
23 - summary
24
25 # Phase 2 - install.
26 # View modules are not shown. Only the view modules shown in the previous phase are
27 # allowed, their names should be added here as placeholders to specify the order in
28 # which view module jobs should be enqueued. Job modules are also allowed.
29 install:
30 #- dummyprocess
31 #- dummypython
32 - partition
33 - mount
34 - unsquashfs
35 - fstab
36 - locale
37 - keyboard
38 - users
39 - umount
40
41 # Phase 3 - postinstall.
42 # View modules are shown as UI pages, jobs from job modules are executed immediately in
43 # the background.
44 # Jobs should be executed sparingly (if at all) in this phase.
45 postinstall: #TODO: actually use this
46 - finished