Merge branch 'feature/17' into develop

This commit is contained in:
Suikan 2021-07-08 23:10:48 +09:00
commit 7a660f7f92
2 changed files with 3 additions and 2 deletions

View file

@ -19,6 +19,7 @@ Record of the modification in project development.
### Fixed ### Fixed
- [Issue 8 : Wrong message after cancellation ](https://github.com/suikan4github/kaiten-yaki/8) - [Issue 8 : Wrong message after cancellation ](https://github.com/suikan4github/kaiten-yaki/8)
- [Issue 15 : CITERTIME parameter is not passed to the chrooted_job ](https://github.com/suikan4github/kaiten-yaki/15) - [Issue 15 : CITERTIME parameter is not passed to the chrooted_job ](https://github.com/suikan4github/kaiten-yaki/15)
- [Issue 17 : Unmount fails ](https://github.com/suikan4github/kaiten-yaki/17)
### Known Issue ### Known Issue

View file

@ -315,9 +315,9 @@ function post_install() {
source "lib/chrooted_job_${DISTRIBUTIONSIGNATURE}.sh" source "lib/chrooted_job_${DISTRIBUTIONSIGNATURE}.sh"
HEREDOC HEREDOC
# Unmount all # Unmount all. -l ( lazy ) option is added to supress the busy error.
echo "...Unmounting all." echo "...Unmounting all."
umount -R "${TARGETMOUNTPOINT}" umount -R -l "${TARGETMOUNTPOINT}"
# Finishing message # Finishing message
cat <<- HEREDOC cat <<- HEREDOC