#!/bin/bash

L1=L
L2=("INSTALLED RPMS: VERIFY (rpm)")

function installed_rpms_verify {

    msgbox " File \"${CONSTATEDIR}/rpmsverified\" will be written. This may take a while."

    nice ${NICELEVEL} \
    rpm -V `cut -f 1  < ${CONSTATEDIR}/rpmsinstalled | grep -v '^dev-[0-9]' | grep -v '^kernel'` \
    | sort -do ${CONSTATEDIR}/rpmsverified

    textbox "${CONSTATEDIR}/rpmsverified"

}
