=== modified file 'functions.sh' --- functions.sh 2006-07-16 09:55:45 +0000 +++ functions.sh 2008-03-04 02:44:32 +0000 @@ -1,5 +1,10 @@ -# Returns a true value if there seems to be a system user account. +# Returns a true value if there seems to be a system user account or +# OEMCONFIGUSER is set is_system_user () { + if [ "$OEMCONFIGUSER" ]; then + return 1 + fi + if ! [ -e $ROOT/etc/passwd ]; then return 1 fi