Change version_next to global var VERSION_NEXT
This commit is contained in:
parent
0919334ab3
commit
32835e6b52
1 changed files with 4 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
source /etc/os-release
|
||||
MIRROR="https://mirror.xenyth.net/fedora/linux/releases"
|
||||
VERSION_NEXT=$(($VERSION_ID + 1))
|
||||
|
||||
main () {
|
||||
curl -s -o /dev/null $MIRROR
|
||||
|
@ -13,7 +14,6 @@ main () {
|
|||
return
|
||||
fi
|
||||
|
||||
local version_next=$(($VERSION_ID + 1))
|
||||
local mirror_response=$(curl -s -o /dev/null -w "%{http_code}" $MIRROR/$version_next/)
|
||||
|
||||
if [[ $mirror_response == 404 ]]; then
|
||||
|
@ -22,13 +22,13 @@ main () {
|
|||
fi
|
||||
|
||||
dnf upgrade --refresh -y
|
||||
dnf system-upgrade download --releasever=$version_next -y
|
||||
dnf system-upgrade download --releasever=$VERSION_NEXT -y
|
||||
|
||||
wall "WARNING: An upgrade from Fedora $VERSION_ID to Fedora $version_next is commencing! Your computer will reboot in 60 seconds."
|
||||
wall "WARNING: An upgrade from Fedora $VERSION_ID to Fedora $VERSION_NEXT is commencing! Your computer will reboot in 60 seconds."
|
||||
|
||||
sleep 60
|
||||
|
||||
dnf system-upgrade reboot -y
|
||||
}
|
||||
|
||||
main
|
||||
main
|
Loading…
Reference in a new issue