#!/bin/sh
u=$1
if [ X$1 = "X" ] ; then
	u=$USER
fi
echo Changing password for user $u
/usr/bin/passwd -l $u
