blob: 6d6782df7c0e667bb1e9b1da4d18e334c1e3708f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python3
# 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)
|