Revert "vmware: tools.conf is now provided via vyos-1x-vmware package"

This reverts commit 27a15f8577cd0bf848f30ca2ecb8e147055c3618.
This commit is contained in:
Christian Poessinger 2021-06-21 17:03:58 +02:00
parent 8e62e32237
commit 7db87dbb75

View File

@ -0,0 +1,14 @@
#!/usr/bin/env python
# open-vm-tools settings
import re
vmtools_config = """
[guestinfo]
poll-interval=30
"""
with open('/etc/vmware-tools/tools.conf', 'w') as f:
f.write(vmtools_config)