X-Git-Url: http://git.hcoop.net/clinton/scripts.git/blobdiff_plain/08839fa8159c79baf7fb2a631dc12d0a092f77d4..a2983bf8f9241b733bb827cf58ca54768026e986:/change-user-password diff --git a/change-user-password b/change-user-password index 4a321f2..78cb621 100755 --- a/change-user-password +++ b/change-user-password @@ -1,4 +1,6 @@ -#!/bin/bash -ex +#!/bin/bash -e + +# disable debug !/bin/bash -ex # # Finally, set password for main user's principal # Aborting this operation is harmless. Just re-invoke cpw. @@ -10,12 +12,12 @@ USER=$1 sudo rm -f /tmp/kadmin.out sudo kadmin.local -p root/admin -q "cpw $USER@HCOOP.NET" \ 2>&1 | tee /tmp/kadmin.out -cat /tmp/kadmin.out | grep 'is too short while changing' && \ +cat /tmp/kadmin.out | grep '\(is too short while changing\|does not contain enough\)' && \ (echo == sending complaint to $USER@hcoop.net ====================================================;\ echo 'please change it' |\ mail -a 'From: Adam Megacz ' \ -c admins@hcoop.net \ - -s "your ~/.mire-password is too short" $USER@hcoop.net) || \ + -s "your ~/.mire-password is too short or not complex enough" $USER@hcoop.net) || \ true cat /tmp/kadmin.out | grep '\(Password for .* changed\|Cannot reuse password while changing password\)' sudo rm -f /tmp/kadmin.out