blob: e3762cc9377386e5692262689fc6456480d5977e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
|