#!/bin/bash

IN=`/fabos/cliexec/config get ts.clockServerList 5`
arr=$(echo $IN | tr ";" "\n")
for x in $arr
do
    LEN=${#x}
    if [ $LEN -gt 31 ]; then
		echo "FAIL"
        exit 255
    fi
done
