mirror of
https://github.com/BastilleBSD/bastille.git
synced 2025-12-11 01:19:52 +01:00
Update setup.sh
Removed -q from kldstat in function configure_zfs(). on FreeBSD 14 (maybe earlier) this causes kldstat to return in such a way that BastilleBSD assumes zfs is not loaded.
This commit is contained in:
@@ -93,7 +93,7 @@ fi
|
||||
|
||||
# Configure ZFS
|
||||
configure_zfs() {
|
||||
if [ ! "$(kldstat -q -m zfs)" ]; then
|
||||
if [ ! "$(kldstat -m zfs)" ]; then
|
||||
info "ZFS module not loaded; skipping..."
|
||||
else
|
||||
## attempt to determine bastille_zroot from `zpool list`
|
||||
|
||||
Reference in New Issue
Block a user