diff options
author | наб <[email protected]> | 2022-04-04 23:16:59 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2022-05-06 12:01:48 -0700 |
commit | 5c97f76f5a9c77254f493e7cb27e75d568e3393c (patch) | |
tree | ac31fafaf9c8c8595eb9819a7fb0ece1c322d62d /contrib | |
parent | 5c0aa409ed3b3b5c4b660c6a5f371247a0ccc8e2 (diff) |
contrib: dracut: zfs-lib: remove find_bootfs
Upstream-commit: dac0b0785a795efe3bbb5367af35e2c4fbe32040
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #13291
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/dracut/90zfs/mount-zfs.sh.in | 4 | ||||
-rwxr-xr-x | contrib/dracut/90zfs/zfs-lib.sh.in | 25 |
2 files changed, 2 insertions, 27 deletions
diff --git a/contrib/dracut/90zfs/mount-zfs.sh.in b/contrib/dracut/90zfs/mount-zfs.sh.in index 2288c80ae..5fd406231 100755 --- a/contrib/dracut/90zfs/mount-zfs.sh.in +++ b/contrib/dracut/90zfs/mount-zfs.sh.in @@ -28,10 +28,10 @@ ZFS_DATASET= ZFS_POOL= if [ "${root}" = "zfs:AUTO" ] ; then - if ! ZFS_DATASET="$(find_bootfs)" ; then + if ! ZFS_DATASET="$(zpool get -Ho value bootfs | grep -m1 -vFx -)"; then # shellcheck disable=SC2086 zpool import -N -a ${ZPOOL_IMPORT_OPTS} - if ! ZFS_DATASET="$(find_bootfs)" ; then + if ! ZFS_DATASET="$(zpool get -Ho value bootfs | grep -m1 -vFx -)"; then warn "ZFS: No bootfs attribute found in importable pools." zpool export -aF diff --git a/contrib/dracut/90zfs/zfs-lib.sh.in b/contrib/dracut/90zfs/zfs-lib.sh.in index 6912ad090..f456e0571 100755 --- a/contrib/dracut/90zfs/zfs-lib.sh.in +++ b/contrib/dracut/90zfs/zfs-lib.sh.in @@ -27,31 +27,6 @@ if getargbool 0 zfs_force -y zfs.force -y zfsforce ; then ZPOOL_IMPORT_OPTS="${ZPOOL_IMPORT_OPTS} -f" fi -# find_bootfs -# returns the first dataset with the bootfs attribute. -find_bootfs() { - IFS="${NEWLINE}" - for dataset in $(zpool list -H -o bootfs); do - case "${dataset}" in - "" | "-") - continue - ;; - "no pools available") - IFS="${OLDIFS}" - return 1 - ;; - *) - IFS="${OLDIFS}" - echo "${dataset}" - return 0 - ;; - esac - done - - IFS="${OLDIFS}" - return 1 -} - # import_pool POOL # imports the given zfs pool if it isn't imported already. import_pool() { |