Comment 23 for bug 2019908

Revision history for this message
Vladimir Petko (vpa1977) wrote :

Test upgrade for affected versions using the script below: no issues.

-------------------
for release in bionic focal jammy kinetic; do
    echo !!!!!!!!!!!!!!${release}!!!!!!!!!!!!!!!!!!!!
    lxc launch images:ubuntu/${release} lp2019908
    lxc exec lp2019908 -- apt install software-properties-common
    lxc exec lp2019908 -- apt-get -y install ca-certificates-java
    lxc exec lp2019908 -- add-apt-repository ppa:ubuntu-security-proposed/ppa
    lxc exec lp2019908 -- apt-get update
    echo -- upgrade ca-certificates-java start ---
    lxc exec lp2019908 -- apt-get upgrade
    lxc stop lp2019908
    lxc delete lp2019908
    echo !!!!!!TEST DONE for ${release}!!!!!!!!!
done
-------------------