mirror of
https://github.com/suikan4github/kaiten-yaki.git
synced 2025-12-20 02:21: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
|
### Fixed
|
||||||
- [Issue 32 : Ubuntu 22.04 fails to deactivate the swap](https://github.com/suikan4github/kaiten-yaki/issues/32)
|
- [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 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
|
### Known Issue
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -395,12 +395,12 @@ function post_install() {
|
||||||
echo "...Unmounting all."
|
echo "...Unmounting all."
|
||||||
umount -R -l "${TARGETMOUNTPOINT}"
|
umount -R -l "${TARGETMOUNTPOINT}"
|
||||||
|
|
||||||
# Finishing message
|
echo "...Deactivating all logical volumes in volume group \"${VGNAME}\"."
|
||||||
cat <<- HEREDOC
|
vgchange -a n "${VGNAME}"
|
||||||
****************** Post-install process finished ******************
|
echo "...Closing LUKS volume \"${CRYPTPARTNAME}\"."
|
||||||
|
cryptsetup close "${CRYPTPARTNAME}"
|
||||||
|
|
||||||
...Ready to reboot.
|
echo "...Post install process finished."
|
||||||
HEREDOC
|
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -75,6 +75,13 @@ function main() {
|
||||||
PASSPHRASE=""
|
PASSPHRASE=""
|
||||||
export PASSPHRASE
|
export PASSPHRASE
|
||||||
|
|
||||||
|
# Finishing message
|
||||||
|
cat <<- HEREDOC
|
||||||
|
****************** Install process finished ******************
|
||||||
|
|
||||||
|
...Ready to reboot.
|
||||||
|
HEREDOC
|
||||||
|
|
||||||
# Normal end
|
# Normal end
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -90,6 +90,13 @@ function main() {
|
||||||
PASSPHRASE=""
|
PASSPHRASE=""
|
||||||
export PASSPHRASE
|
export PASSPHRASE
|
||||||
|
|
||||||
|
# Finishing message
|
||||||
|
cat <<- HEREDOC
|
||||||
|
****************** Install process finished ******************
|
||||||
|
|
||||||
|
...Ready to reboot.
|
||||||
|
HEREDOC
|
||||||
|
|
||||||
# Normal end
|
# Normal end
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue