0
私はゲストVMにvmwareツールをインストールしようとしています。私がオンラインで見た例のほとんどは、open-vm-toolsを使ったLinux上にあります。これは以下の例です。WindowsのVMにvmwareツールをインストールするには
- 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"
ウィンドウで行う方法の例はありますか?