mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
13 lines
154 B
Bash
Executable File
13 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
pciconf -lv | grep -i vmware >/dev/null 2>/dev/null
|
|
if [ "$?" = "0" ]
|
|
then
|
|
echo "vmware: YES"
|
|
exit 0
|
|
else
|
|
echo "vmware: NO"
|
|
exit 1
|
|
fi
|