Does the operating system know the group named self?

Property definitions

privileges :: privileges $ Text :: group_exists
	# Does the operating system know the group named `self`?
	fun group_exists: Bool
	do
		var passwd = new Group.from_name(to_s)
		return not passwd.address_is_null
	end
lib/privileges/privileges.nit:34,2--39,4