mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 18:31:00 +03:00
8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
|
#!/bin/sh
|
||
|
if [ "$1" = "-h" ] ; then
|
||
|
echo "Show the underlying path for a device."
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
echo upath="$VDEV_UPATH"
|