mirror of
https://github.com/suikan4github/kaiten-yaki.git
synced 2025-12-20 18:41:17 -03:00
Merge branch 'feature/17' into develop
This commit is contained in:
commit
7a660f7f92
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue