mirror of
https://github.com/suikan4github/kaiten-yaki.git
synced 2025-12-19 18:11:17 -03:00
Issue 38 : "Ready to reboot" message should be changed
https://github.com/suikan4github/kaiten-yaki/issues/38
This commit is contained in:
parent
316131c2b3
commit
f725af8f44
4 changed files with 20 additions and 5 deletions
|
|
@ -16,6 +16,7 @@ Record of the modification in project development.
|
|||
### Fixed
|
||||
- [Issue 32 : Ubuntu 22.04 fails to deactivate the swap](https://github.com/suikan4github/kaiten-yaki/issues/32)
|
||||
- [Issue 36 : Clear the PASSPHRASE variable at the end of installation](https://github.com/suikan4github/kaiten-yaki/issues/36)
|
||||
- [Issue 38 : "Ready to reboot" message should be changed](https://github.com/suikan4github/kaiten-yaki/issues/38)
|
||||
|
||||
### Known Issue
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -75,6 +75,13 @@ function main() {
|
|||
PASSPHRASE=""
|
||||
export PASSPHRASE
|
||||
|
||||
# Finishing message
|
||||
cat <<- HEREDOC
|
||||
****************** Install process finished ******************
|
||||
|
||||
...Ready to reboot.
|
||||
HEREDOC
|
||||
|
||||
# Normal end
|
||||
return 0
|
||||
|
||||
|
|
|
|||
|
|
@ -90,6 +90,13 @@ function main() {
|
|||
PASSPHRASE=""
|
||||
export PASSPHRASE
|
||||
|
||||
# Finishing message
|
||||
cat <<- HEREDOC
|
||||
****************** Install process finished ******************
|
||||
|
||||
...Ready to reboot.
|
||||
HEREDOC
|
||||
|
||||
# Normal end
|
||||
return 0
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue