summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/upgrades/files/versions.sh
blob: c7c966b6065e8bb437c4149fd21550e0402d6c8d (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

yum_installed=$(yum list installed "$@" 2>&1 | tail -n +2 | grep -v 'Installed Packages' | grep -v 'Red Hat Subscription Management' | grep -v 'Error:' | awk '{ print $2 }' | tr '\n' ' ')

yum_available=$(yum list available -q "$@" 2>&1 | tail -n +2 | grep -v 'Available Packages' | grep -v 'Red Hat Subscription Management' | grep -v 'el7ose' | grep -v 'Error:' | awk '{ print $2 }' | tr '\n' ' ')


echo "---"
echo "curr_version: ${yum_installed}"
echo "avail_version: ${yum_available}"