diff options
author | Steve Wills <swills@FreeBSD.org> | 2019-12-09 22:45:11 +0800 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2019-12-09 22:45:11 +0800 |
commit | 636cdb5ac551efd20b1dbbca4d1df605034ad8ef (patch) | |
tree | 534ea9c9f2e8b8b2edcf01644f4a21b5a20d5ba5 /sysutils | |
parent | 3f68ad2b8d96ff205b65954193cb596a84eed36d (diff) | |
download | freebsd-ports-gnome-636cdb5ac551efd20b1dbbca4d1df605034ad8ef.tar.gz freebsd-ports-gnome-636cdb5ac551efd20b1dbbca4d1df605034ad8ef.tar.zst freebsd-ports-gnome-636cdb5ac551efd20b1dbbca4d1df605034ad8ef.zip |
sysutils/virt-what: create port
virt-what is a shell script which can be used to detect if the program
is running in a virtual machine.
virt-what supports a very large number of different hypervisor types,
including common open source hypervisors (KVM, Xen, QEMU, VirtualBox),
mainframe systems like IBM Systemz, LPAR, z/VM, hardware partitioning
schemes like Hitachi Virtage, proprietary hypervisors like VMWare,
Microsoft Hyper-V and much more.
WWW: https://people.redhat.com/~rjones/virt-what/
PR: 242403
Submitted by: Juraj Lutter <juraj@lutter.sk>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/virt-what/Makefile | 21 | ||||
-rw-r--r-- | sysutils/virt-what/distinfo | 3 | ||||
-rw-r--r-- | sysutils/virt-what/pkg-descr | 10 |
4 files changed, 35 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 2142c56eedc1..df9733e3ba52 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1421,6 +1421,7 @@ SUBDIR += vii SUBDIR += vils SUBDIR += vimpager + SUBDIR += virt-what SUBDIR += virtualmin SUBDIR += vm-bhyve SUBDIR += vmdktool diff --git a/sysutils/virt-what/Makefile b/sysutils/virt-what/Makefile new file mode 100644 index 000000000000..27cb0c959845 --- /dev/null +++ b/sysutils/virt-what/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= virt-what +PORTVERSION= 1.20 +CATEGORIES= sysutils +MASTER_SITES= https://people.redhat.com/~rjones/virt-what/files/ + +MAINTAINER= juraj@lutter.sk +COMMENT= Utility to determine whether it is being run in virtual environment + +LICENSE= GPLv1 + +USES= cpe perl5 + +GNU_CONFIGURE= yes + +PLIST_FILES= libexec/virt-what-cpuid-helper \ + man/man1/virt-what.1.gz \ + sbin/virt-what + +.include <bsd.port.mk> diff --git a/sysutils/virt-what/distinfo b/sysutils/virt-what/distinfo new file mode 100644 index 000000000000..867e6eb2025e --- /dev/null +++ b/sysutils/virt-what/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1575376051 +SHA256 (virt-what-1.20.tar.gz) = f913dcd29add5121e3ffc0f2d0f17e19ff3183e8ab8ca417a5b6be43787910e8 +SIZE (virt-what-1.20.tar.gz) = 459243 diff --git a/sysutils/virt-what/pkg-descr b/sysutils/virt-what/pkg-descr new file mode 100644 index 000000000000..eb6dbe215827 --- /dev/null +++ b/sysutils/virt-what/pkg-descr @@ -0,0 +1,10 @@ +virt-what is a shell script which can be used to detect if the program +is running in a virtual machine. + +virt-what supports a very large number of different hypervisor types, +including common open source hypervisors (KVM, Xen, QEMU, VirtualBox), +mainframe systems like IBM Systemz, LPAR, z/VM, hardware partitioning +schemes like Hitachi Virtage, proprietary hypervisors like VMWare, +Microsoft Hyper-V and much more. + +WWW: https://people.redhat.com/~rjones/virt-what/ |