Merge pull request #763 from darko-poljak/bugfix/disks-explorer-fallback

explorer/disks: do fallback right, in a POSIX way
This commit is contained in:
Darko Poljak 2019-04-20 17:03:43 +02:00 committed by GitHub
commit c8bf78d651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -1,27 +1,27 @@
#!/bin/sh -e #!/bin/sh -e
os="$( "$__explorer/os" )" uname_s="$(uname -s)"
case "$os" in case "${uname_s}" in
freebsd) FreeBSD)
sysctl -n kern.disks sysctl -n kern.disks
;; ;;
openbsd) OpenBSD|NetBSD)
sysctl -n hw.disknames | grep -Eo '[sw]d[0-9]+' | xargs sysctl -n hw.disknames | grep -Eo '[lsw]d[0-9]+' | xargs
;; ;;
netbsd) Linux)
sysctl -n hw.disknames | grep -Eo '[lsw]d[0-9]' | xargs
;;
*)
# hopefully everything else is linux
if command -v lsblk > /dev/null if command -v lsblk > /dev/null
then then
# exclude ram disks, floppies and cdroms # exclude ram disks, floppies and cdroms
# https://www.kernel.org/doc/Documentation/admin-guide/devices.txt # https://www.kernel.org/doc/Documentation/admin-guide/devices.txt
lsblk -e 1,2,11 -dno name | xargs lsblk -e 1,2,11 -dno name | xargs
else else
# fallback printf "%s operating system without lsblk is not supported, if you can please submit a patch\n" "${uname_s}" >&2
cd /dev && echo [vsh]d? exit 1
fi fi
;; ;;
*)
printf "%s operating system is not supported, if you can please submit a patch\n" "${uname_s}" >&2
exit 1
;;
esac esac