Merge branch 'feature/32' into develop

This commit is contained in:
Suikan 2022-05-07 14:40:56 +09:00
commit 5ed04d3a0a
3 changed files with 8 additions and 0 deletions

View file

@ -9,6 +9,8 @@ Record of the modification in project development.
### Deprecated ### Deprecated
### Removed ### Removed
### Fixed ### Fixed
- [Issue 32 : Ubuntu 22.04 fails to deactivate the swap](https://github.com/suikan4github/kaiten-yaki/issues/32)
### Known Issue ### Known Issue
## [1.2.0] - 2021-10-16 ## [1.2.0] - 2021-10-16

View file

@ -66,6 +66,9 @@ function main() {
# The script is parameterized by env-variable to fit to the distribution # The script is parameterized by env-variable to fit to the distribution
post_install post_install
# Free LUKS volume as swap volume.
swapoff -a
# Normal end # Normal end
return 0 return 0

View file

@ -81,6 +81,9 @@ function main() {
# The script is parameterized by env-variable to fit to the distribution # The script is parameterized by env-variable to fit to the distribution
post_install post_install
# Free LUKS volume as swap volume.
swapoff -a
# Normal end # Normal end
return 0 return 0