You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
linux-infosec-setupper/back_pwquality.sh

36 lines
609 B
Bash

#!/bin/bash
set -e
source common.sh
_mk_pwquality_conf() {
local difok=1 \
minlen=8 \
dcredit=0 \
uncredit=0 \
lcredit=0 \
ocredit=0 \
minclass=0 \
maxrepeat=0 \
maxsequence=0 \
maxclassrepeat=0 \
gecoscheck=0 \
dictcheck=1 \
usercheck=1 \
usersubstr=0 \
enforcing=1 \
badwords \
dictpath \
retry=1 \
enforce_for_root=0 \
local_users_only=0
while [ -n "$1" ]; do
case "$1" in
--difok) shift;
_check_argument "$1" "--difok"
;;
--minlen)
esac
done
}