Issue 38 : "Ready to reboot" message should be changed

https://github.com/suikan4github/kaiten-yaki/issues/38
This commit is contained in:
Suikan 2022-05-10 21:25:51 +09:00
parent 316131c2b3
commit f725af8f44
4 changed files with 20 additions and 5 deletions

View file

@ -395,12 +395,12 @@ function post_install() {
echo "...Unmounting all."
umount -R -l "${TARGETMOUNTPOINT}"
# Finishing message
cat <<- HEREDOC
****************** Post-install process finished ******************
echo "...Deactivating all logical volumes in volume group \"${VGNAME}\"."
vgchange -a n "${VGNAME}"
echo "...Closing LUKS volume \"${CRYPTPARTNAME}\"."
cryptsetup close "${CRYPTPARTNAME}"
...Ready to reboot.
HEREDOC
echo "...Post install process finished."
return 0

View file

@ -75,6 +75,13 @@ function main() {
PASSPHRASE=""
export PASSPHRASE
# Finishing message
cat <<- HEREDOC
****************** Install process finished ******************
...Ready to reboot.
HEREDOC
# Normal end
return 0

View file

@ -90,6 +90,13 @@ function main() {
PASSPHRASE=""
export PASSPHRASE
# Finishing message
cat <<- HEREDOC
****************** Install process finished ******************
...Ready to reboot.
HEREDOC
# Normal end
return 0