the enewuser function will give a slight bash error, fix below: --- extra_functions.sh.orig 2003-06-17 22:49:29.000000000 +0200 +++ extra_functions.sh 2003-06-17 22:49:48.000000000 +0200 @@ -397,7 +397,7 @@ fi # see if user already exists - if [ ! -z "${realuser}"]; then + if [ ! -z "${realuser}" ]; then if [ "${euser}" == "${realuser}" ]; then einfo "${euser} already exists on your system :)" return 0 notice the space.
seems to be fixed