From 5eb35780d06c60c58ead2e61b98c06e98ea8c687 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Fri, 13 Jun 2014 16:59:53 +0200 Subject: [PATCH] Added config file sample. --- settings.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 settings.conf diff --git a/settings.conf b/settings.conf new file mode 100644 index 000000000..f6b288e31 --- /dev/null +++ b/settings.conf @@ -0,0 +1,15 @@ +# Configuration file for Calamares +# Syntax is YAML 1.2 +--- +# Modules can be core modules (with different interfaces) and QtWidgets page modules. +# They could all be placed in a number of different paths. +modules-search: [ local, /path/to/dir/with/more/modules ] + +# We define the module names in the order they should show up (QtWidget page modules, +# with one or more pages) OR be executed if enqueued (all other modules). +# Pages can also enqueue jobs for delayed execution. +# TBD: do we want to allow non-page modules (core-modules) to be set as immediate or +# delayed? Is this an intrinsic property of a module? Does it depend on whether it's +# a QProcess, a Python script or a plugin? More research is required. --teo +modules-prepare : [ greeting, language, summary ] +modules-postinstall : [ finished ]