Compare commits

...

2 Commits

Author SHA1 Message Date
Erich Eickmeyer 52aa0cc771 Don't let people make a user with a blank password
1 year ago
Erich Eickmeyer 3bfd2f6c28 Update from diffs
2 years ago

19
debian/changelog vendored

@ -1,3 +1,22 @@
calamares-settings-ubuntu (1:22.04.4.3) jammy; urgency=medium
* Don't allow the first user to be created with a blank password in either
Lubuntu or Ubuntu Studio. (LP: #2016436)
-- Erich Eickmeyer <eeickmeyer@ubuntu.com> Mon, 17 Apr 2023 13:56:57 -0700
calamares-settings-ubuntu (1:22.04.4.2) jammy; urgency=medium
* Fixed LibreOffice localization bug (LP: #1970270)
-- Aaron Rainbolt <arraybolt3@gmail.com> Fri, 05 Aug 2022 17:26:33 -0500
calamares-settings-ubuntu (1:22.04.4.1) jammy; urgency=medium
* Fixed BTRFS installation bug (LP: #1966774).
-- Aaron Rainbolt <arraybolt3@gmail.com> Sun, 24 Jul 2022 14:37:49 -0500
calamares-settings-ubuntu (1:22.04.4) jammy; urgency=medium
* Change calamares to use Ubuntu Studio Light colors

@ -1,6 +1,6 @@
mountOptions:
default: defaults
btrfs: defaults,noatime,space_cache,autodefrag
btrfs: defaults,noatime,autodefrag
ssdExtraMountOptions:
ext4: discard
jfs: discard

@ -14,6 +14,9 @@ extraMounts:
- device: /run/udev
mountPoint: /run/udev
options: bind
- device: /run/systemd/resolve
mountPoint: /run/systemd/resolve
options: bind
extraMountsEfi:
- device: efivarfs

@ -12,3 +12,4 @@ operations:
- language-pack-$LOCALE
- hunspell-$LOCALE
- libreoffice-help-$LOCALE
- libreoffice-l10n-$LOCALE

@ -13,6 +13,7 @@ defaultGroups:
system: true
- sudo
passwordRequirements:
nonempty: true
minLength: 0
maxLength: 0
# Explicitly set the shell instead of deferring to Calamares. We have a platform

@ -1,6 +1,6 @@
mountOptions:
default: defaults
btrfs: defaults,noatime,space_cache,autodefrag
btrfs: defaults,noatime,autodefrag
ssdExtraMountOptions:
ext4: discard
jfs: discard

@ -14,6 +14,9 @@ extraMounts:
- device: /run/udev
mountPoint: /run/udev
options: bind
- device: /run/systemd/resolve
mountPoint: /run/systemd/resolve
options: bind
extraMountsEfi:
- device: efivarfs

@ -11,3 +11,4 @@ operations:
- language-pack-$LOCALE
- hunspell-$LOCALE
- libreoffice-help-$LOCALE
- libreoffice-l10n-$LOCALE

@ -14,6 +14,7 @@ defaultGroups:
- sudo
- audio
passwordRequirements:
nonempty: true
minLength: 0
maxLength: 0
# Explicitly set the shell instead of deferring to Calamares. We have a platform

Loading…
Cancel
Save