0

我正在尝试使用 ansible 在来宾 vm 上安装 vmware 工具。我在网上看到的大多数示例都是在 linux 上使用 open-vm-tools 的。这是下面的一个例子。

    - name: debian | installing open-vm-tools
  apt: name=open-vm-tools state=present
  when: ansible_os_family == "Debian" and ansible_virtualization_type == "VMware"

- name: centos | installing open-vm-tools if a vm
  yum: name=open-vm-tools state=present
  when: ansible_os_family == "Redhat" and ansible_virtualization_type == "VMware"

- name: centos | starting and enabling open-vm-tools
  service: name=vmtoolsd.service state=restarted enabled=yes
  when: ansible_os_family == "Redhat" and ansible_virtualization_type == "VMware"

是否有一个如何在 Windows 中执行此操作的示例?

4

1 回答 1

1

建议使用win_chocolatey自动下载和安装,例如:

- name: install vmware tools via Chocolatey
  win_chocolatey: name="vmware-tools"

否则,win_copy + win_package 将包推送过来并安装。

于 2016-09-06T23:46:59.533 回答