Add a minimum password strength requirement.

ubuntu/focal
Simon Quigley 6 years ago
parent 0cdb5a5e07
commit ebdbcddd51

6
debian/changelog vendored

@ -1,3 +1,9 @@
calamares-settings-ubuntu (17) UNRELEASED; urgency=medium
* Add a minimum password strength requirement.
-- Simon Quigley <tsimonq2@ubuntu.com> Fri, 10 Aug 2018 13:13:43 -0500
calamares-settings-ubuntu (16) cosmic; urgency=medium
* Enable automirror by default.

4
debian/control vendored

@ -11,7 +11,9 @@ Vcs-Browser: https://git.launchpad.net/ubuntu-calamares-settings
Package: calamares-settings-lubuntu
Architecture: all
Depends: calamares-settings-ubuntu-common (= ${binary:Version}), ${misc:Depends}
Depends: calamares-settings-ubuntu-common (= ${binary:Version}),
libpwquality-dev,
${misc:Depends}
Description: Lubuntu Calamares Settings and Branding
This package contains the Calamares settings and branding for Lubuntu Next.

@ -1,7 +1,7 @@
---
doAutologin: false
setRootPassword: false
sudoersGroup: sudo
sudoersGroup: sudo
defaultGroups:
- adm
- lpadmin
@ -12,6 +12,12 @@ defaultGroups:
- storage
- sudo
- audio
passwordRequirements:
minLength: 5
maxLength: 200
libpwquality:
- minlen=0
- minclass=0
# Explicitly set the shell instead of deferring to Calamares. We have a platform
# expectation derived from Ubuntu here.
userShell: /bin/bash

Loading…
Cancel
Save