Package: citadel-server Version: 7.37-1 Filename: pool/main/c/citadel/citadel-server_7.37-1_i386.deb Found error in /usr/lib/citadel-server/migrate_aliases.sh: $ grep -A5 -B5 /tmp/ /usr/lib/citadel-server/migrate_aliases.sh sed -e "s; *;;g" \ -e "s;\t*;;g" | \ grep -v ^root: | \ grep -v ^# | \ sed -e "s;:root;,room_aide;" \ -e "s;:;,;" >/tmp/aliases NLINES=`cat /tmp/aliases|wc -l` for ((i=1; i <= $NLINES; i++)); do ALIAS=`head -n $i /tmp/aliases |tail -n 1` ORG=`echo $ALIAS|sed "s;,.*;;"` if grep "$ORG" "$CITALIAS"; then echo "Ignoring Alias $ORG as its alreday there" else echo "$ALIAS" >>$CITALIAS