Skip to content

Commit

Permalink
fix: possible fix for apparent ZFS depmod fail (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsherman authored Nov 14, 2024
1 parent 794f61d commit b7f87e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fedora-coreos/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fi
if [[ "-zfs" == "${ZFS_TAG}" ]]; then
rpm-ostree install pv /tmp/rpms/akmods-zfs/kmods/zfs/*.rpm /tmp/rpms/akmods-zfs/kmods/zfs/other/zfs-dracut-*.rpm
# for some reason depmod ran automatically with zfs 2.1 but not with 2.2
depmod -A ${KERNEL_VERSION}
depmod -a -v ${KERNEL_VERSION}
fi

## CONDITIONAL: install NVIDIA
Expand Down
2 changes: 1 addition & 1 deletion ucore/install-ucore-minimal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fi
if [[ "-zfs" == "${ZFS_TAG}" ]]; then
rpm-ostree install pv /tmp/rpms/akmods-zfs/kmods/zfs/*.rpm /tmp/rpms/akmods-zfs/kmods/zfs/other/zfs-dracut-*.rpm
# for some reason depmod ran automatically with zfs 2.1 but not with 2.2
depmod -A ${KERNEL_VERSION}
depmod -a -v ${KERNEL_VERSION}
fi

## CONDITIONAL: install NVIDIA
Expand Down

0 comments on commit b7f87e8

Please sign in to comment.