57 lines
1.9 KiB
YAML
57 lines
1.9 KiB
YAML
%YAML 1.2
|
|
---
|
|
# This is an example config file for OS-Installer.
|
|
# Place your config under /etc/os-installer/config.yaml for it to be used.
|
|
# If a value is not defined, it's default will be used.
|
|
|
|
# Name of the distribution.
|
|
# Default: None
|
|
distribution_name: 'Debuntorch'
|
|
|
|
# Whether the installation needs an internet connection.
|
|
# Default: yes
|
|
internet_connection_required: yes
|
|
|
|
# A URL/IP address to be used to check for an existing internet connection.
|
|
# Default: 'http://nmcheck.gnome.org/check_network_status.txt'
|
|
internet_checker_url: 'http://nmcheck.gnome.org/check_network_status.txt'
|
|
|
|
# A selection of languages the installer should present by default.
|
|
# Note: For a language to be available, it needs to be provided by the system
|
|
# and the installer needs to have a translation into that language.
|
|
# Default: ['en', 'ar', 'de', 'es', 'fr', 'ja', 'ru', 'zh']
|
|
suggested_languages:
|
|
- 'ar'
|
|
- 'de'
|
|
- 'en'
|
|
- 'es'
|
|
- 'fr'
|
|
- 'ja'
|
|
- 'ru'
|
|
- 'zh'
|
|
|
|
# Minimum disk size needed for the installation (in Gigabyte)
|
|
# Default: 5
|
|
minimum_disk_size: 5
|
|
|
|
# Whether to offer setting a disk encryption PIN
|
|
# Default: yes
|
|
offer_disk_encryption: yes
|
|
|
|
# A list of additional software packages that can be optionally be selected
|
|
# from the installer. The package string will be passed to the installation
|
|
# script without changes, so you can bundle multiple packages as one point.
|
|
# All fields are required (package, default, name, description, icon_path).
|
|
# Default: []
|
|
additional_software:
|
|
- package : 'firefox'
|
|
default : yes
|
|
name : 'Firefox'
|
|
description : 'Popular Web Browser from Mozilla'
|
|
icon_path : '/etc/os-installer/icons/firefox.png'
|
|
- package : 'libreoffice-fresh'
|
|
default : no
|
|
name : 'LibreOffice'
|
|
description : 'Office Suite for Documents, Tables, Presentations and more'
|
|
icon_path : '/etc/os-installer/icons/libreoffice-main.png'
|