mirror of
https://github.com/spiritLHLS/one-click-installation-script.git
synced 2024-11-16 16:42:18 +08:00
12 lines
319 B
Bash
12 lines
319 B
Bash
#!/bin/bash
|
|
#from https://github.com/spiritLHLS/one-click-installation-script
|
|
|
|
version=$(lsb_release -r | awk '{print $2}')
|
|
if [ "$version" != "22" ]; then
|
|
apt-get update
|
|
apt-get upgrade -y
|
|
do-release-upgrade
|
|
sed -i 's/Prompt=lts/Prompt=normal/g' /etc/update-manager/release-upgrades
|
|
do-release-upgrade -d
|
|
fi
|