mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
9 lines
99 B
Plaintext
9 lines
99 B
Plaintext
|
for x in $(cat /proc/cmdline)
|
||
|
do
|
||
|
case $x in
|
||
|
root=ZFS=*|root=zfs:*)
|
||
|
BOOT=zfs
|
||
|
;;
|
||
|
esac
|
||
|
done
|