diff options
author | Renato Botelho <garga@FreeBSD.org> | 2022-08-12 10:25:27 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2022-08-12 10:28:46 -0300 |
commit | eb65cf5cbe543a6372834bee33243344bc40f737 (patch) | |
tree | 79f01e8d2b0685274b4c37b32ac9ab7cfbb52664 /emulators/open-vm-tools | |
parent | security/unix-selfauth-helper: Update to 1.0.1 (diff) |
emulators/open-vm-tools: Update to 12.0.5
- Update to 12.0.5 [1]
- Silence checkvm_cmd [2]
PR: 264241 [1], 264564 [2]
Reported by: John Wolfe <jwolfe@vmware.com> [1], oz42@oz42.eu [2]
Sponsored by: Rubicon Communications, LLC ("Netgate")
Diffstat (limited to 'emulators/open-vm-tools')
-rw-r--r-- | emulators/open-vm-tools/Makefile | 3 | ||||
-rw-r--r-- | emulators/open-vm-tools/distinfo | 6 | ||||
-rw-r--r-- | emulators/open-vm-tools/files/vmware-guestd.in | 4 |
3 files changed, 6 insertions, 7 deletions
diff --git a/emulators/open-vm-tools/Makefile b/emulators/open-vm-tools/Makefile index 3838c637558e..bbca5cafa464 100644 --- a/emulators/open-vm-tools/Makefile +++ b/emulators/open-vm-tools/Makefile @@ -1,6 +1,5 @@ PORTNAME= open-vm-tools -PORTVERSION= 12.0.0 -PORTREVISION= 1 +PORTVERSION= 12.0.5 DISTVERSIONPREFIX= stable- PORTEPOCH= 2 CATEGORIES= emulators diff --git a/emulators/open-vm-tools/distinfo b/emulators/open-vm-tools/distinfo index 8c369047ab12..0421003f38cb 100644 --- a/emulators/open-vm-tools/distinfo +++ b/emulators/open-vm-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1646656337 -SHA256 (vmware-open-vm-tools-stable-12.0.0_GH0.tar.gz) = 244d224dc503f2c9350899a61fef418f23dc0520e8e30dce10863ea2dc81f047 -SIZE (vmware-open-vm-tools-stable-12.0.0_GH0.tar.gz) = 2938469 +TIMESTAMP = 1660303917 +SHA256 (vmware-open-vm-tools-stable-12.0.5_GH0.tar.gz) = 19ec67984347bb5f867a5646658c7695352cef772c4bee212a0d9216f02ebd93 +SIZE (vmware-open-vm-tools-stable-12.0.5_GH0.tar.gz) = 2941098 diff --git a/emulators/open-vm-tools/files/vmware-guestd.in b/emulators/open-vm-tools/files/vmware-guestd.in index 9a5e3c201467..99235082d679 100644 --- a/emulators/open-vm-tools/files/vmware-guestd.in +++ b/emulators/open-vm-tools/files/vmware-guestd.in @@ -17,8 +17,8 @@ rcvar=vmware_guestd_enable load_rc_config $name -checkvm_cmd="%%PREFIX%%/bin/vmware-checkvm > /dev/null" -if ${checkvm_cmd} > /dev/null ; then +checkvm_cmd="%%PREFIX%%/bin/vmware-checkvm > /dev/null 2>&1" +if ${checkvm_cmd}; then : ${vmware_guestd_enable:="YES"} else : ${vmware_guestd_enable:="NO"} |