Hello,
I'm trying to figure out how to monitor the update status for Red Hat or CentOS servers.
So far I'm using this:
Anyone has figured out how to get this status?
Thanks
I'm trying to figure out how to monitor the update status for Red Hat or CentOS servers.
So far I'm using this:
Code:
UserParameter=redhat.security,yum list updates --security | awk '{print $1;}' | grep x86_64 | wc -l
UserParameter=redhat.updates,yum list updates | awk '{print $1;}' | grep x86_64 | wc -l
Thanks
Comment