Skip to content

Commit a2d7e33

Browse files
committed
Fix not set zfskernelmode when dkms is selected
Fix issue/2 ref: #2
1 parent 268fb97 commit a2d7e33

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6363
* Configuration is now done in `01-configure.sh`
6464
* You can execute `02-install.sh` without any previously done configuration, `install.dist.conf` is then used
6565

66-
## [1.1.0](https://github.com/stevleibelt/arch-linux-configuration/tree/1.1.0) - released at 20231001
66+
## [1.1.1](https://github.com/stevleibelt/arch-linux-configuration/tree/1.1.1) - released at 20230608
67+
68+
### Changed
69+
70+
* Fixed [issue/2](https://github.com/stevleibelt/arch-linux-configuration/issues/2)
71+
72+
## [1.1.0](https://github.com/stevleibelt/arch-linux-configuration/tree/1.1.0) - released at 20230101
6773

6874
### Changed
6975

scripts/zfs/install/01-configure.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ function _main ()
447447
case ${REPLY:-0} in
448448
1) zfskernelmode="archzfs-linux"
449449
;;
450-
*) zfskernelmod="archzfs-dkms"
450+
*) zfskernelmode="archzfs-dkms"
451451
;;
452452
esac
453453
else
@@ -456,7 +456,7 @@ function _main ()
456456
case ${REPLY:-0} in
457457
1) zfskernelmode="archzfs-linux-lts"
458458
;;
459-
*) zfskernelmod="archzfs-dkms"
459+
*) zfskernelmode="archzfs-dkms"
460460
;;
461461
esac
462462
fi

0 commit comments

Comments
 (0)