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 calamares-settings-ubuntu (16) cosmic; urgency=medium
* Enable automirror by default. * 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 Package: calamares-settings-lubuntu
Architecture: all 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 Description: Lubuntu Calamares Settings and Branding
This package contains the Calamares settings and branding for Lubuntu Next. This package contains the Calamares settings and branding for Lubuntu Next.

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

Loading…
Cancel
Save