Skip to content

Commit

Permalink
Fix not set zfskernelmode when dkms is selected
Browse files Browse the repository at this point in the history
Fix issue/2
ref: #2
  • Loading branch information
stevleibelt committed Jun 8, 2023
1 parent 268fb97 commit a2d7e33
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
* Configuration is now done in `01-configure.sh`
* You can execute `02-install.sh` without any previously done configuration, `install.dist.conf` is then used

## [1.1.0](https://github.com/stevleibelt/arch-linux-configuration/tree/1.1.0) - released at 20231001
## [1.1.1](https://github.com/stevleibelt/arch-linux-configuration/tree/1.1.1) - released at 20230608

### Changed

* Fixed [issue/2](https://github.com/stevleibelt/arch-linux-configuration/issues/2)

## [1.1.0](https://github.com/stevleibelt/arch-linux-configuration/tree/1.1.0) - released at 20230101

### Changed

Expand Down
4 changes: 2 additions & 2 deletions scripts/zfs/install/01-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ function _main ()
case ${REPLY:-0} in
1) zfskernelmode="archzfs-linux"
;;
*) zfskernelmod="archzfs-dkms"
*) zfskernelmode="archzfs-dkms"
;;
esac
else
Expand All @@ -456,7 +456,7 @@ function _main ()
case ${REPLY:-0} in
1) zfskernelmode="archzfs-linux-lts"
;;
*) zfskernelmod="archzfs-dkms"
*) zfskernelmode="archzfs-dkms"
;;
esac
fi
Expand Down

0 comments on commit a2d7e33

Please sign in to comment.