change "echo ===" to "echo #<<<" to avoid confusing when searching for ===
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
echo "Thanks https://github.com/bohanyang/debi"
|
||||
echo
|
||||
|
||||
echo "=== Enter debian version [8,9,10,11] or [leave blank] for 11"
|
||||
read -p ">>> " DEBIAN_VERSION
|
||||
echo "#<<< Enter debian version [8,9,10,11] or [leave blank] for 11"
|
||||
read -p "#>>> " DEBIAN_VERSION
|
||||
if [ -z "${DEBIAN_VERSION}" ]
|
||||
then
|
||||
DEBIAN_VERSION=11
|
||||
@@ -23,8 +23,8 @@ ARCH=`dpkg --print-architecture`
|
||||
# ARCH=amd64
|
||||
# fi
|
||||
|
||||
echo "=== Enter presets to download from [cdn, aws, china] or [leave blank] for cdn"
|
||||
read -p ">>> " PRESET
|
||||
echo "#<<< Enter presets to download from [cdn, aws, china] or [leave blank] for cdn"
|
||||
read -p "#>>> " PRESET
|
||||
if [ -z "${PRESET}" ]
|
||||
then
|
||||
PRESET=cdn
|
||||
@@ -35,11 +35,11 @@ sudo chmod a+rx debi.sh
|
||||
sudo ./debi.sh --version $DEBIAN_VERSION --architecture `dpkg --print-architecture` --user root --$PRESET # --architecture 可参略或者[amd64(默认), i386, arm64, armhf];--password 可省略,则脚本启动后会问你要密码
|
||||
|
||||
echo
|
||||
echo "=== Last chance!!! Enter [r] to reboot to new system, or [anything else] to cancel all changes"
|
||||
read -p ">>> " LAST
|
||||
echo "#<<< Last chance!!! Enter [r] to reboot to new system, or [anything else] to cancel all changes"
|
||||
read -p "#>>> " LAST
|
||||
if [ 'r' = "$LAST" ]
|
||||
then
|
||||
echo "=== Shutdown now, wait for about 30 minutes (the project's github says 30 seconds), then try to ssh"
|
||||
echo "#<<< Shutdown now, wait for about 30 minutes (the project's github says 30 seconds), then try to ssh"
|
||||
sudo shutdown -r now
|
||||
else
|
||||
sudo rm -rf debi.sh /etc/default/grub.d/zz-debi.cfg /boot/debian-* && { sudo update-grub || sudo grub2-mkconfig -o /boot/grub2/grub.cfg; }
|
||||
|
||||
Reference in New Issue
Block a user