# $Id$

# check if I am a specific user
amI() {
	RET=0
	test `whoami` != "$1" && RET=1
	return ${RET}
}

# The following scripts have historical reasons and are currently not
# used any more. The complete text might be found in version 0.3 of
# the scripts.
# updates user's menu for user $1, indipendently from any Blend
updateUser() {
	RET=0
	SYSUSER=$1
	return ${RET}
}

# updates menu scripts for any user registered in Blend
updateBlend() {
	RET=0
	BLEND=$1
	
	return ${RET}
}
