penguins-eggs 9.5.2 → 9.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oclif.manifest.json +1 -1
- package/README.md +6 -6
- package/conf/distros/rolling/calamares/modules/bootloader.yml +75 -0
- package/conf/distros/rolling/calamares/modules/displaymanager.yml +2 -2
- package/conf/distros/rolling/calamares/modules/finished.yml +44 -4
- package/conf/distros/rolling/calamares/modules/fstab.yml +30 -12
- package/conf/distros/rolling/calamares/modules/locale.yml +55 -21
- package/conf/distros/rolling/calamares/modules/luksopenswaphookcfg.yml +3 -4
- package/conf/distros/rolling/calamares/modules/machineid.yml +37 -1
- package/conf/distros/rolling/calamares/modules/mount.yml +108 -31
- package/conf/distros/rolling/calamares/modules/packages.yml +2 -2
- package/conf/distros/rolling/calamares/modules/removeuser.yml +3 -2
- package/conf/distros/rolling/calamares/modules/shellprocess_removelink.yml +3 -1
- package/conf/distros/rolling/calamares/modules/unpackfs.yml +2 -2
- package/conf/distros/rolling/calamares/modules/users.yml +1 -1
- package/conf/distros/rolling/calamares-32/modules/displaymanager.yml +23 -0
- package/conf/distros/rolling/calamares-32/modules/finished.yml +6 -0
- package/conf/distros/rolling/calamares-32/modules/fstab.yml +14 -0
- package/conf/distros/rolling/calamares-32/modules/locale.yml +11 -0
- package/conf/distros/rolling/calamares-32/modules/mount.yml +39 -0
- package/conf/distros/rolling/calamares-32/modules/packages.yml +11 -0
- package/conf/distros/rolling/calamares-32/modules/partition.yml +283 -0
- package/conf/distros/rolling/calamares-32/modules/removeuser.yml +16 -0
- package/conf/distros/rolling/calamares-32/modules/shellprocess_removelink.yml +8 -0
- package/conf/distros/rolling/calamares-32/modules/unpackfs.yml +7 -0
- package/conf/distros/rolling/calamares-32/modules/users.yml +20 -0
- package/conf/distros/rolling/calamares-32/settings.yml +91 -0
- package/dist/classes/incubation/installer.js +3 -0
- package/dist/classes/ovary.js +4 -1
- package/dist/classes/pxe.js +4 -2
- package/dist/classes/tools.js +5 -1
- package/dist/commands/produce.js +8 -3
- package/dist/commands/tools/ppa.js +81 -25
- package/dist/commands/wardrobe/list.js +14 -3
- package/dist/krill/krill-prepare.js +6 -1
- package/dist/krill/krill-sequence.js +6 -1
- package/package.json +1 -1
- package/scripts/force-calamares.sh +9 -0
- package/conf/distros/rolling/README.md +0 -3
|
@@ -1,38 +1,115 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
# Mount filesystems in the target (generally, before treating the
|
|
4
|
-
# target as a usable chroot / "live" system). Filesystems are
|
|
5
|
-
# automatically mounted from the partitioning module. Filesystems
|
|
6
|
-
# listed here are **extra**. The filesystems listed in *extraMounts*
|
|
7
|
-
# are mounted in all target systems. The filesystems listed in
|
|
8
|
-
# *extraMountsEfi* are mounted in the target system **only** if
|
|
9
|
-
# the host machine uses UEFI.
|
|
1
|
+
# Arch
|
|
2
|
+
# calamares 3.3
|
|
10
3
|
---
|
|
11
4
|
# Extra filesystems to mount. The key's value is a list of entries; each
|
|
12
|
-
# entry has
|
|
5
|
+
# entry has five keys:
|
|
13
6
|
# - device The device node to mount
|
|
14
|
-
# - fs
|
|
7
|
+
# - fs (optional) The filesystem type to use
|
|
15
8
|
# - mountPoint Where to mount the filesystem
|
|
16
|
-
# - options (optional)
|
|
9
|
+
# - options (optional) An array of options to pass to mount
|
|
10
|
+
# - efi (optional) A boolean that when true is only mounted for UEFI installs
|
|
11
|
+
#
|
|
12
|
+
# The device is not mounted if the mountPoint is unset or if the fs is
|
|
13
|
+
# set to unformatted.
|
|
17
14
|
#
|
|
18
15
|
extraMounts:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
16
|
+
- device: proc
|
|
17
|
+
fs: proc
|
|
18
|
+
mountPoint: /proc
|
|
19
|
+
- device: sys
|
|
20
|
+
fs: sysfs
|
|
21
|
+
mountPoint: /sys
|
|
22
|
+
- device: /dev
|
|
23
|
+
mountPoint: /dev
|
|
24
|
+
options: [ bind ]
|
|
25
|
+
- device: tmpfs
|
|
26
|
+
fs: tmpfs
|
|
27
|
+
mountPoint: /run
|
|
28
|
+
- device: /run/udev
|
|
29
|
+
mountPoint: /run/udev
|
|
30
|
+
options: [ bind ]
|
|
31
|
+
- device: efivarfs
|
|
32
|
+
fs: efivarfs
|
|
33
|
+
mountPoint: /sys/firmware/efi/efivars
|
|
34
|
+
efi: true
|
|
35
|
+
|
|
36
|
+
# Btrfs subvolumes to create if root filesystem is on btrfs volume.
|
|
37
|
+
# If *mountpoint* is mounted already to another partition, it is ignored.
|
|
38
|
+
# Separate subvolume for swapfile is handled separately and automatically.
|
|
39
|
+
#
|
|
40
|
+
# It is possible to prevent subvolume creation -- this is likely only relevant
|
|
41
|
+
# for the root (/) subvolume -- by giving an empty string as a subvolume
|
|
42
|
+
# name. In this case no subvolume will be created.
|
|
43
|
+
#
|
|
44
|
+
btrfsSubvolumes:
|
|
45
|
+
- mountPoint: /
|
|
46
|
+
subvolume: /@
|
|
47
|
+
# As an alternative:
|
|
48
|
+
#
|
|
49
|
+
# subvolume: ""
|
|
50
|
+
- mountPoint: /home
|
|
51
|
+
subvolume: /@home
|
|
52
|
+
- mountPoint: /var/cache
|
|
53
|
+
subvolume: /@cache
|
|
54
|
+
- mountPoint: /var/log
|
|
55
|
+
subvolume: /@log
|
|
34
56
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
57
|
+
# The name of the btrfs subvolume holding the swapfile. This only used when
|
|
58
|
+
# a swapfile is selected and the root filesystem is btrfs
|
|
59
|
+
#
|
|
60
|
+
btrfsSwapSubvol: /@swap
|
|
61
|
+
|
|
62
|
+
# The mount options used to mount each filesystem.
|
|
63
|
+
#
|
|
64
|
+
# filesystem contains the name of the filesystem or on of three special
|
|
65
|
+
# values, "default", efi" and "btrfs_swap". The logic is applied in this manner:
|
|
66
|
+
# - If the partition is the EFI partition, the "efi" entry will be used
|
|
67
|
+
# - If the fs is btrfs and the subvolume is for the swapfile,
|
|
68
|
+
# the "btrfs_swap" entry is used
|
|
69
|
+
# - If the filesystem is an exact match for filesystem, that entry is used
|
|
70
|
+
# - If no match is found in the above, the default entry is used
|
|
71
|
+
# - If there is no match and no default entry, "defaults" is used
|
|
72
|
+
# - If the mountOptions key is not present, "defaults" is used
|
|
73
|
+
#
|
|
74
|
+
# Each filesystem entry contains 3 keys, all of which are optional
|
|
75
|
+
# options - An array of mount options that is used on all disk types
|
|
76
|
+
# ssdOptions - An array of mount options combined with options for ssds
|
|
77
|
+
# hddOptions - An array of mount options combined with options for hdds
|
|
78
|
+
# If combining these options results in an empty array, "defaults" is used
|
|
79
|
+
#
|
|
80
|
+
# Example 1
|
|
81
|
+
# In this example, there are specific options for ext4 and btrfs filesystems,
|
|
82
|
+
# the EFI partition and the subvolume holding the btrfs swapfile. All other
|
|
83
|
+
# filesystems use the default entry. For the btrfs filesystem, there are
|
|
84
|
+
# additional options specific to hdds and ssds
|
|
85
|
+
#
|
|
86
|
+
# mountOptions:
|
|
87
|
+
# - filesystem: default
|
|
88
|
+
# options: [ defaults ]
|
|
89
|
+
# - filesystem: efi
|
|
90
|
+
# options: [ defaults, umask=0077 ]
|
|
91
|
+
# - filesystem: ext4
|
|
92
|
+
# options: [ defaults, noatime ]
|
|
93
|
+
# - filesystem: btrfs
|
|
94
|
+
# options: [ defaults, noatime, compress=zstd:1 ]
|
|
95
|
+
# ssdOptions: [ discard=async ]
|
|
96
|
+
# hddOptions: [ autodefrag ]
|
|
97
|
+
# - filesystem: btrfs_swap
|
|
98
|
+
# options: [ defaults, noatime ]
|
|
99
|
+
#
|
|
100
|
+
# Example 2
|
|
101
|
+
# In this example there is a single default used by all filesystems
|
|
102
|
+
#
|
|
103
|
+
# mountOptions:
|
|
104
|
+
# - filesystem: default
|
|
105
|
+
# options: [ defaults, noatime ]
|
|
106
|
+
#
|
|
107
|
+
mountOptions:
|
|
108
|
+
- filesystem: default
|
|
109
|
+
options: [ defaults, noatime ]
|
|
110
|
+
- filesystem: efi
|
|
111
|
+
options: [ defaults, umask=0077 ]
|
|
112
|
+
- filesystem: btrfs
|
|
113
|
+
options: [ defaults, noatime, compress=lzo ]
|
|
114
|
+
- filesystem: btrfs_swap
|
|
115
|
+
options: [ defaults, noatime ]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Manjaro
|
|
2
|
+
# calamares-3.2
|
|
3
|
+
---
|
|
4
|
+
#The DM module attempts to set up all the DMs found in this list, in that precise order.
|
|
5
|
+
#It also sets up autologin, if the feature is enabled in globalstorage.
|
|
6
|
+
#The displaymanagers list can also be set in globalstorage, and in that case it overrides anything set up here.
|
|
7
|
+
displaymanagers:
|
|
8
|
+
- sddm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
#Enable the following settings to force a desktop environment in your displaymanager configuration file:
|
|
12
|
+
#defaultDesktopEnvironment:
|
|
13
|
+
# executable: "startkde"
|
|
14
|
+
# desktopFile: "plasma"
|
|
15
|
+
|
|
16
|
+
#If true, try to ensure that the user, group, /var directory etc. for the
|
|
17
|
+
#display manager are set up correctly. This is normally done by the distribution
|
|
18
|
+
#packages, and best left to them. Therefore, it is disabled by default.
|
|
19
|
+
basicSetup: false
|
|
20
|
+
|
|
21
|
+
#If true, setup autologin for openSUSE. This only makes sense on openSUSE
|
|
22
|
+
#derivatives or other systems where /etc/sysconfig/displaymanager exists.
|
|
23
|
+
sysconfigSetup: false
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Manjaro
|
|
2
|
+
# calamares-3.2
|
|
3
|
+
# fstab
|
|
4
|
+
---
|
|
5
|
+
mountOptions:
|
|
6
|
+
default: defaults,noatime
|
|
7
|
+
btrfs: defaults,noatime,space_cache,autodefrag
|
|
8
|
+
ssdExtraMountOptions:
|
|
9
|
+
ext4: discard
|
|
10
|
+
jfs: discard
|
|
11
|
+
xfs: discard
|
|
12
|
+
swap: discard
|
|
13
|
+
btrfs: discard,compress=lzo
|
|
14
|
+
crypttabOptions: luks,keyscript=/bin/cat
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Manjaro
|
|
2
|
+
# calamares-3.2
|
|
3
|
+
# mount
|
|
4
|
+
# Mount filesystems in the target (generally, before treating the
|
|
5
|
+
# target as a usable chroot / "live" system). Filesystems are
|
|
6
|
+
# automatically mounted from the partitioning module. Filesystems
|
|
7
|
+
# listed here are **extra**. The filesystems listed in *extraMounts*
|
|
8
|
+
# are mounted in all target systems. The filesystems listed in
|
|
9
|
+
# *extraMountsEfi* are mounted in the target system **only** if
|
|
10
|
+
# the host machine uses UEFI.
|
|
11
|
+
---
|
|
12
|
+
# Extra filesystems to mount. The key's value is a list of entries; each
|
|
13
|
+
# entry has four keys:
|
|
14
|
+
# - device The device node to mount
|
|
15
|
+
# - fs The filesystem type to use
|
|
16
|
+
# - mountPoint Where to mount the filesystem
|
|
17
|
+
# - options (optional) Extra options to pass to mount(8)
|
|
18
|
+
#
|
|
19
|
+
extraMounts:
|
|
20
|
+
- device: proc
|
|
21
|
+
fs: proc
|
|
22
|
+
mountPoint: /proc
|
|
23
|
+
- device: sys
|
|
24
|
+
fs: sysfs
|
|
25
|
+
mountPoint: /sys
|
|
26
|
+
- device: /dev
|
|
27
|
+
mountPoint: /dev
|
|
28
|
+
options: bind
|
|
29
|
+
- device: tmpfs
|
|
30
|
+
fs: tmpfs
|
|
31
|
+
mountPoint: /run
|
|
32
|
+
- device: /run/udev
|
|
33
|
+
mountPoint: /run/udev
|
|
34
|
+
options: bind
|
|
35
|
+
|
|
36
|
+
extraMountsEfi:
|
|
37
|
+
- device: efivarfs
|
|
38
|
+
fs: efivarfs
|
|
39
|
+
mountPoint: /sys/firmware/efi/efivars
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
# manjaro
|
|
2
|
+
# calamares-3.2
|
|
3
|
+
# packages
|
|
4
|
+
---
|
|
5
|
+
# SPDX-FileCopyrightText: no
|
|
6
|
+
# SPDX-License-Identifier: CC0-1.0
|
|
7
|
+
#
|
|
8
|
+
# This setting specifies the mount point of the EFI system partition. Some
|
|
9
|
+
# distributions (Fedora, Debian, Manjaro, etc.) use /boot/efi, others (KaOS,
|
|
10
|
+
# etc.) use just /boot.
|
|
11
|
+
#
|
|
12
|
+
# Defaults to "/boot/efi", may be empty (but weird effects ensue)
|
|
13
|
+
efiSystemPartition: "/boot/efi"
|
|
14
|
+
|
|
15
|
+
# This optional setting specifies the size of the EFI system partition.
|
|
16
|
+
# If nothing is specified, the default size of 300MiB will be used.
|
|
17
|
+
#
|
|
18
|
+
# This size applies both to automatic partitioning and the checks
|
|
19
|
+
# during manual partitioning. A minimum of 32MiB is enforced,
|
|
20
|
+
# 300MiB is the default, M is treated as MiB, and if you really want
|
|
21
|
+
# one-million (10^6) bytes, use MB.
|
|
22
|
+
#
|
|
23
|
+
# efiSystemPartitionSize: 300M
|
|
24
|
+
|
|
25
|
+
# This optional setting specifies the name of the EFI system partition (see
|
|
26
|
+
# PARTLABEL; gpt only; requires KPMCore >= 4.2.0).
|
|
27
|
+
# If nothing is specified, the partition name is left unset.
|
|
28
|
+
# efiSystemPartitionName: EFI
|
|
29
|
+
|
|
30
|
+
# In autogenerated partitioning, allow the user to select a swap size?
|
|
31
|
+
# If there is exactly one choice, no UI is presented, and the user
|
|
32
|
+
# cannot make a choice -- this setting is used. If there is more than
|
|
33
|
+
# one choice, a UI is presented.
|
|
34
|
+
#
|
|
35
|
+
# Legacy settings *neverCreateSwap* and *ensureSuspendToDisk* correspond
|
|
36
|
+
# to values of *userSwapChoices* as follows:
|
|
37
|
+
# - *neverCreateSwap* is true, means [none]
|
|
38
|
+
# - *neverCreateSwap* is false, *ensureSuspendToDisk* is false, [small]
|
|
39
|
+
# - *neverCreateSwap* is false, *ensureSuspendToDisk* is true, [suspend]
|
|
40
|
+
#
|
|
41
|
+
# Autogenerated swap sizes are as follows:
|
|
42
|
+
# - *suspend*: Swap is always at least total memory size,
|
|
43
|
+
# and up to 4GiB RAM follows the rule-of-thumb 2 * memory;
|
|
44
|
+
# from 4GiB to 8 GiB it stays steady at 8GiB, and over 8 GiB memory
|
|
45
|
+
# swap is the size of main memory.
|
|
46
|
+
# - *small*: Follows the rules above, but Swap is at
|
|
47
|
+
# most 8GiB, and no more than 10% of available disk.
|
|
48
|
+
# In both cases, a fudge factor (usually 10% extra) is applied so that there
|
|
49
|
+
# is some space for administrative overhead (e.g. 8 GiB swap will allocate
|
|
50
|
+
# 8.8GiB on disk in the end).
|
|
51
|
+
#
|
|
52
|
+
# If *file* is enabled here, make sure to have the *fstab* module
|
|
53
|
+
# as well (later in the exec phase) so that the swap file is
|
|
54
|
+
# actually created.
|
|
55
|
+
userSwapChoices:
|
|
56
|
+
- none # Create no swap, use no swap
|
|
57
|
+
- small # Up to 4GB
|
|
58
|
+
- suspend # At least main memory size
|
|
59
|
+
# - reuse # Re-use existing swap, but don't create any (unsupported right now)
|
|
60
|
+
- file # To swap file instead of partition
|
|
61
|
+
|
|
62
|
+
# This optional setting specifies the name of the swap partition (see
|
|
63
|
+
# PARTLABEL; gpt only; requires KPMCore >= 4.2.0).
|
|
64
|
+
# If nothing is specified, the partition name is left unset.
|
|
65
|
+
# swapPartitionName: swap
|
|
66
|
+
|
|
67
|
+
# LEGACY SETTINGS (these will generate a warning)
|
|
68
|
+
# ensureSuspendToDisk: true
|
|
69
|
+
# neverCreateSwap: false
|
|
70
|
+
|
|
71
|
+
# This setting specifies the LUKS generation (i.e LUKS1, LUKS2) used internally by
|
|
72
|
+
# cryptsetup when creating an encrypted partition.
|
|
73
|
+
#
|
|
74
|
+
# This option is set to luks1 by default, as grub doesn't support LUKS2 + Argon2id
|
|
75
|
+
# currently. On the other hand grub does support LUKS2 with PBKDF2 and could therefore be
|
|
76
|
+
# also set to luks2. Also there are some patches for grub and Argon2.
|
|
77
|
+
# See: https://aur.archlinux.org/packages/grub-improved-luks2-git
|
|
78
|
+
#
|
|
79
|
+
# Choices: luks1, luks2 (in addition, "luks" means "luks1")
|
|
80
|
+
#
|
|
81
|
+
# The default is luks1
|
|
82
|
+
#
|
|
83
|
+
luksGeneration: luks1
|
|
84
|
+
|
|
85
|
+
# This setting determines if encryption should be allowed when using zfs. This
|
|
86
|
+
# setting has no effect unless zfs support is provided.
|
|
87
|
+
#
|
|
88
|
+
# This setting is to handle the fact that some bootloaders(such as grub) do not
|
|
89
|
+
# support zfs encryption.
|
|
90
|
+
#
|
|
91
|
+
# The default is true
|
|
92
|
+
#
|
|
93
|
+
# allowZfsEncryption: true
|
|
94
|
+
|
|
95
|
+
# Correctly draw nested (e.g. logical) partitions as such.
|
|
96
|
+
drawNestedPartitions: false
|
|
97
|
+
|
|
98
|
+
# Show/hide partition labels on manual partitioning page.
|
|
99
|
+
alwaysShowPartitionLabels: true
|
|
100
|
+
|
|
101
|
+
# Allow manual partitioning.
|
|
102
|
+
#
|
|
103
|
+
# When set to false, this option hides the "Manual partitioning" button,
|
|
104
|
+
# limiting the user's choice to "Erase", "Replace" or "Alongside".
|
|
105
|
+
# This can be useful when using a custom partition layout we don't want
|
|
106
|
+
# the user to modify.
|
|
107
|
+
#
|
|
108
|
+
# If nothing is specified, manual partitioning is enabled.
|
|
109
|
+
#allowManualPartitioning: true
|
|
110
|
+
|
|
111
|
+
# Initial selection on the Choice page
|
|
112
|
+
#
|
|
113
|
+
# There are four radio buttons (in principle: erase, replace, alongside, manual),
|
|
114
|
+
# and you can pick which of them, if any, is initially selected. For most
|
|
115
|
+
# installers, "none" is the right choice: it makes the user pick something specific,
|
|
116
|
+
# rather than accidentally being able to click past an important choice (in particular,
|
|
117
|
+
# "erase" is a dangerous choice).
|
|
118
|
+
#
|
|
119
|
+
# The default is "none"
|
|
120
|
+
#
|
|
121
|
+
initialPartitioningChoice: none
|
|
122
|
+
#
|
|
123
|
+
# Similarly, some of the installation choices may offer a choice of swap;
|
|
124
|
+
# the available choices depend on *userSwapChoices*, above, and this
|
|
125
|
+
# setting can be used to pick a specific one.
|
|
126
|
+
#
|
|
127
|
+
# The default is "none" (no swap) if that is one of the enabled options, otherwise
|
|
128
|
+
# one of the items from the options.
|
|
129
|
+
initialSwapChoice: none
|
|
130
|
+
|
|
131
|
+
# Default partition table type, used when a "erase" disk is made.
|
|
132
|
+
#
|
|
133
|
+
# When erasing a disk, a new partition table is created on disk.
|
|
134
|
+
# In other cases, e.g. Replace and Alongside, as well as when using
|
|
135
|
+
# manual partitioning, this partition table exists already on disk
|
|
136
|
+
# and it is left unmodified.
|
|
137
|
+
#
|
|
138
|
+
# Suggested values: gpt, msdos
|
|
139
|
+
# If nothing is specified, Calamares defaults to "gpt" if system is
|
|
140
|
+
# efi or "msdos".
|
|
141
|
+
#
|
|
142
|
+
# Names are case-sensitive and defined by KPMCore.
|
|
143
|
+
# defaultPartitionTableType: msdos
|
|
144
|
+
|
|
145
|
+
# Requirement for partition table type
|
|
146
|
+
#
|
|
147
|
+
# Restrict the installation on disks that match the type of partition
|
|
148
|
+
# tables that are specified.
|
|
149
|
+
#
|
|
150
|
+
# Possible values: msdos, gpt. Names are case-sensitive and defined by KPMCore.
|
|
151
|
+
#
|
|
152
|
+
# If nothing is specified, Calamares defaults to both "msdos" and "gpt".
|
|
153
|
+
#
|
|
154
|
+
# requiredPartitionTableType: gpt
|
|
155
|
+
# requiredPartitionTableType:
|
|
156
|
+
# - msdos
|
|
157
|
+
# - gpt
|
|
158
|
+
|
|
159
|
+
# Default filesystem type, used when a "new" partition is made.
|
|
160
|
+
#
|
|
161
|
+
# When replacing a partition, the existing filesystem inside the
|
|
162
|
+
# partition is retained. In other cases, e.g. Erase and Alongside,
|
|
163
|
+
# as well as when using manual partitioning and creating a new
|
|
164
|
+
# partition, this filesystem type is pre-selected. Note that
|
|
165
|
+
# editing a partition in manual-creation mode will not automatically
|
|
166
|
+
# change the filesystem type to this default value -- it is not
|
|
167
|
+
# creating a new partition.
|
|
168
|
+
#
|
|
169
|
+
# Suggested values: ext2, ext3, ext4, reiser, xfs, jfs, btrfs
|
|
170
|
+
# If nothing is specified, Calamares defaults to "ext4".
|
|
171
|
+
#
|
|
172
|
+
# Names are case-sensitive and defined by KPMCore.
|
|
173
|
+
defaultFileSystemType: "ext4"
|
|
174
|
+
|
|
175
|
+
# Selectable filesystem type, used when "erase" is done.
|
|
176
|
+
#
|
|
177
|
+
# When erasing the disk, the *defaultFileSystemType* is used (see
|
|
178
|
+
# above), but it is also possible to give users a choice:
|
|
179
|
+
# list suitable filesystems here. A drop-down is provided
|
|
180
|
+
# to pick which is the filesystems will be used.
|
|
181
|
+
#
|
|
182
|
+
# The value *defaultFileSystemType* is added to this list (with a warning)
|
|
183
|
+
# if not present; the default pick is the *defaultFileSystemType*.
|
|
184
|
+
#
|
|
185
|
+
# If not specified at all, uses *defaultFileSystemType* without a
|
|
186
|
+
# warning (this matches traditional no-choice-available behavior best).
|
|
187
|
+
# availableFileSystemTypes: ["ext4","f2fs"]
|
|
188
|
+
|
|
189
|
+
# Show/hide LUKS related functionality in automated partitioning modes.
|
|
190
|
+
# Disable this if you choose not to deploy early unlocking support in GRUB2
|
|
191
|
+
# and/or your distribution's initramfs solution.
|
|
192
|
+
#
|
|
193
|
+
# BIG FAT WARNING:
|
|
194
|
+
#
|
|
195
|
+
# This option is unsupported, as it cuts out a crucial security feature.
|
|
196
|
+
# Disabling LUKS and shipping Calamares without a correctly configured GRUB2
|
|
197
|
+
# and initramfs is considered suboptimal use of the Calamares software. The
|
|
198
|
+
# Calamares team will not provide user support for any potential issue that
|
|
199
|
+
# may arise as a consequence of setting this option to false.
|
|
200
|
+
# It is strongly recommended that system integrators put in the work to support
|
|
201
|
+
# LUKS unlocking support in GRUB2 and initramfs/dracut/mkinitcpio/etc.
|
|
202
|
+
# For more information on setting up GRUB2 for Calamares with LUKS, see
|
|
203
|
+
# https://github.com/calamares/calamares/wiki/Deploy-LUKS
|
|
204
|
+
#
|
|
205
|
+
# If nothing is specified, LUKS is enabled in automated modes.
|
|
206
|
+
#enableLuksAutomatedPartitioning: true
|
|
207
|
+
|
|
208
|
+
# Partition layout.
|
|
209
|
+
#
|
|
210
|
+
# This optional setting specifies a custom partition layout.
|
|
211
|
+
#
|
|
212
|
+
# If nothing is specified, the default partition layout is a single partition
|
|
213
|
+
# for root that uses 100% of the space and uses the filesystem defined by
|
|
214
|
+
# defaultFileSystemType.
|
|
215
|
+
#
|
|
216
|
+
# Note: the EFI system partition is prepend automatically to the layout if
|
|
217
|
+
# needed; the swap partition is appended to the layout if enabled (small of
|
|
218
|
+
# suspend).
|
|
219
|
+
#
|
|
220
|
+
# Otherwise, the partition layout is defined as follow:
|
|
221
|
+
#
|
|
222
|
+
# partitionLayout:
|
|
223
|
+
# - name: "rootfs"
|
|
224
|
+
# type: "4f68bce3-e8cd-4db1-96e7-fbcaf984b709"
|
|
225
|
+
# filesystem: "ext4"
|
|
226
|
+
# mountPoint: "/"
|
|
227
|
+
# size: 20%
|
|
228
|
+
# minSize: 500M
|
|
229
|
+
# maxSize: 10G
|
|
230
|
+
# attributes: 0xffff000000000003
|
|
231
|
+
# - name: "home"
|
|
232
|
+
# type: "933ac7e1-2eb4-4f13-b844-0e14e2aef915"
|
|
233
|
+
# filesystem: "ext4"
|
|
234
|
+
# mountPoint: "/home"
|
|
235
|
+
# size: 3G
|
|
236
|
+
# minSize: 1.5G
|
|
237
|
+
# features:
|
|
238
|
+
# 64bit: false
|
|
239
|
+
# casefold: true
|
|
240
|
+
# - name: "data"
|
|
241
|
+
# filesystem: "fat32"
|
|
242
|
+
# mountPoint: "/data"
|
|
243
|
+
# features:
|
|
244
|
+
# sector-size: 4096
|
|
245
|
+
# sectors-per-cluster: 128
|
|
246
|
+
# size: 100%
|
|
247
|
+
#
|
|
248
|
+
# There can be any number of partitions, each entry having the following attributes:
|
|
249
|
+
# - name: filesystem label
|
|
250
|
+
# and
|
|
251
|
+
# partition name (gpt only; since KPMCore 4.2.0)
|
|
252
|
+
# - uuid: partition uuid (optional parameter; gpt only; requires KPMCore >= 4.2.0)
|
|
253
|
+
# - type: partition type (optional parameter; gpt only; requires KPMCore >= 4.2.0)
|
|
254
|
+
# - attributes: partition attributes (optional parameter; gpt only; requires KPMCore >= 4.2.0)
|
|
255
|
+
# - filesystem: filesystem type (optional parameter)
|
|
256
|
+
# - if not set at all, treat as "unformatted"
|
|
257
|
+
# - if "unformatted", no filesystem will be created
|
|
258
|
+
# - if "unknown" (or an unknown FS name, like "elephant") then the
|
|
259
|
+
# default filesystem type, or the user's choice, will be applied instead
|
|
260
|
+
# of "unknown" (e.g. the user might pick ext4, or xfs).
|
|
261
|
+
# - mountPoint: partition mount point (optional parameter; not mounted if unset)
|
|
262
|
+
# - size: partition size in bytes (append 'K', 'M' or 'G' for KiB, MiB or GiB)
|
|
263
|
+
# or
|
|
264
|
+
# % of the available drive space if a '%' is appended to the value
|
|
265
|
+
# - minSize: minimum partition size (optional parameter)
|
|
266
|
+
# - maxSize: maximum partition size (optional parameter)
|
|
267
|
+
# - features: filesystem features (optional parameter; requires KPMCore >= 4.2.0)
|
|
268
|
+
# name: boolean or integer or string
|
|
269
|
+
|
|
270
|
+
# Checking for available storage
|
|
271
|
+
#
|
|
272
|
+
# This overlaps with the setting of the same name in the welcome module's
|
|
273
|
+
# requirements section. If nothing is set by the welcome module, this
|
|
274
|
+
# value is used instead. It is still a problem if there is no required
|
|
275
|
+
# size set at all, and the replace and resize options will not be offered
|
|
276
|
+
# if no required size is set.
|
|
277
|
+
#
|
|
278
|
+
# The value is in Gibibytes (GiB).
|
|
279
|
+
#
|
|
280
|
+
# BIG FAT WARNING: except for OEM-phase-0 use, you should be using
|
|
281
|
+
# the welcome module, **and** configure this value in
|
|
282
|
+
# `welcome.conf`, not here.
|
|
283
|
+
# requiredStorage: 3.5
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Manjaro
|
|
2
|
+
# Calamares 3.2
|
|
3
|
+
# removeuser
|
|
4
|
+
# SPDX-FileCopyrightText: no
|
|
5
|
+
# SPDX-License-Identifier: CC0-1.0
|
|
6
|
+
#
|
|
7
|
+
# Removes a single user (with userdel) from the system.
|
|
8
|
+
# This is typically used in OEM setups or if the live user
|
|
9
|
+
# spills into the target system.
|
|
10
|
+
#
|
|
11
|
+
# The module never fails; if userdel fails, this is logged
|
|
12
|
+
# but the module still reports success and installation / setup
|
|
13
|
+
# continues as normal.
|
|
14
|
+
---
|
|
15
|
+
# Username in the target system to be removed.
|
|
16
|
+
username: live
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Arch
|
|
2
|
+
# users
|
|
3
|
+
---
|
|
4
|
+
userGroup: users
|
|
5
|
+
defaultGroups:
|
|
6
|
+
- cdrom
|
|
7
|
+
- floppy
|
|
8
|
+
- wheel
|
|
9
|
+
- audio
|
|
10
|
+
- dip
|
|
11
|
+
- video
|
|
12
|
+
- plugdev
|
|
13
|
+
- netdev
|
|
14
|
+
- lpadmin
|
|
15
|
+
- scanner
|
|
16
|
+
- bluetooth
|
|
17
|
+
autologinGroup: autologin
|
|
18
|
+
sudoersGroup: wheel
|
|
19
|
+
setRootPassword: true
|
|
20
|
+
doReusePassword: false
|