diff options
author | Aaron LI <aly@aaronly.me> | 2018-03-21 09:59:18 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-03-21 09:59:18 +0800 |
commit | 8cc8cc137f618b39be9d46f6ccf3277b7d02f2bd (patch) | |
tree | 869fbd3c651f26f359d60601adb9afbf84b1da89 | |
parent | 0b3406f155f2ee5bf2aa815fddc035cab16069cd (diff) | |
download | dfly-update-8cc8cc137f618b39be9d46f6ccf3277b7d02f2bd.tar.bz2 |
Improve the post-update messages
-rwxr-xr-x | dfly-update | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/dfly-update b/dfly-update index 678a861..ecd8c1f 100755 --- a/dfly-update +++ b/dfly-update @@ -551,10 +551,13 @@ postupgrade() { echo "+---------------------------------------------------------+" find -s /etc -name "*.${NEW_SUF}" | sort - echo "+---------------------------------------------------------+" - echo "Upgrade the packages by:" - echo " # pkg upgrade -f" - echo "+=========================================================+" + cat << _EOF_ ++---------------------------------------------------------+ +After manually merge the above files, reboot into the new +system, and upgrade the packages with: + # pkg upgrade -f ++=========================================================+ +_EOF_ } |