check cockpit new version

This commit is contained in:
qiaofeng1227 2023-08-01 17:26:39 +08:00
parent 62d62157f0
commit c007bab4ab

View file

@ -248,13 +248,13 @@ UpdateCockpit(){
echo "Parpare to update Cockpit to latest ..." echo "Parpare to update Cockpit to latest ..."
if command -v apt > /dev/null;then if command -v apt > /dev/null;then
current_version=$(dpkg-query --showformat='${Version}' --show cockpit) current_version=$(dpkg-query --showformat='${Version}' --show cockpit | cut -c 1-3)
available_version=$(apt-cache policy cockpit | grep Candidate | awk '{print $2}') available_version=$(apt-cache policy cockpit | grep Candidate | awk '{print $2}' | cut -c 1-3)
elif command -v yum > /dev/null;then elif command -v yum > /dev/null;then
current_version=$(rpm -q --queryformat '%{VERSION}' cockpit) current_version=$(rpm -q --queryformat '%{VERSION}' cockpit | cut -c 1-3)
available_version=$(yum list available cockpit --showduplicates | awk '/cockpit/ {print $2}' | sort -V | tail -n 1) available_version=$(yum list available cockpit --showduplicates | awk '/cockpit/ {print $2}' | sort -V | tail -n 1 | cut -c 1-3)
fi fi
if [[ $(echo -e "$current_version\n$available_version" | awk -F. '{ for(i=1; i<=NF; i++) { if($i != v2[i]) { if($i < v2[i]) exit 0; else exit 1; } } exit 0; }') == 0 ]]; then if [ "$current_version" \< "$available_version" ]; then
echo "There is newer version on cockpit." echo "There is newer version on cockpit."
pkcon refresh pkcon refresh
pkcon get-updates pkcon get-updates