OSDN Git Service

libcalamares.job is of type libcalamares.Job
[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 - summary
23
24 # Phase 2 - install.
25 # View modules are not shown. Only the view modules shown in the previous phase are
26 # allowed, their names should be added here as placeholders to specify the order in
27 # which view module jobs should be enqueued. Job modules are also allowed.
28 install:
29 - dummyprocess
30 - dummypython
31 #- partition
32 #- mount
33 #- unsquashfs
34 - locale
35 - keyboard
36 #- users
37
38 # Phase 3 - postinstall.
39 # View modules are shown as UI pages, jobs from job modules are executed immediately in
40 # the background.
41 # Jobs should be executed sparingly (if at all) in this phase.
42 postinstall: #TODO: actually use this
43 - finished