unset ERR
if [ $(barium find /usr/share/rosa-rw/pubkeys/main.gpg |xargs md5sum |cut -f1 -d ' ' |sort -u |wc -l) -ne 1 ] ; then
    ERR=yes
    echo -n "/usr/share/rosa-rw/pubkeys/main.gpg - "
    echo_ "WARNING: files  in 'barium find /usr/share/rosa-rw/pubkeys/main.gpg' must be equal"
fi
ret="$(barium update -cl 2>&1)"
if echo "$ret" |grep -Eq 'Incorrect|WARNING|ERROR' ; then
    ERR=yes
    echo "$ret"
fi

[ ! $ERR ] && true
