zfs-builds-mm/zfs-0.8.1/contrib/dracut/90zfs/zfs-needshutdown.sh

11 lines
265 B
Bash
Raw Normal View History

2019-07-06 23:40:11 +02:00
#!/bin/sh
type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
if zpool list 2>&1 | grep -q 'no pools available' ; then
info "ZFS: No active pools, no need to export anything."
else
info "ZFS: There is an active pool, will export it."
need_shutdown
fi