diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-04-19 04:37:37 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-04-19 04:37:37 +0200 |
commit | e9ddc475382b8dd1b57836b2b8de855ae1538bed (patch) | |
tree | 066cf67c0e3400f1aa6fd83b0f82f450b5f15b3f /data/live-build-config | |
parent | e6bb8072e00da2e698fb472d3c8c18f9cecfd3dd (diff) | |
download | vyos-build-e9ddc475382b8dd1b57836b2b8de855ae1538bed.tar.gz vyos-build-e9ddc475382b8dd1b57836b2b8de855ae1538bed.zip |
T1131: enable vmtoolsd polling again.
Diffstat (limited to 'data/live-build-config')
-rwxr-xr-x | data/live-build-config/hooks/live/30-openvmtools-configs.chroot | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/data/live-build-config/hooks/live/30-openvmtools-configs.chroot b/data/live-build-config/hooks/live/30-openvmtools-configs.chroot index 545f40db..e3762cc9 100755 --- a/data/live-build-config/hooks/live/30-openvmtools-configs.chroot +++ b/data/live-build-config/hooks/live/30-openvmtools-configs.chroot @@ -1,19 +1,14 @@ #!/usr/bin/env python -# The Cisco Unity plugin, that implements a proprietary extension -# for IPsec split tunneling, interfers with DMVPN -# -# Since we do not do remote access IPsec, the simplest solution -# is to disable it entirely from the start. +# open-vm-tools settings import re vmtools_config = """ [guestinfo] - poll-interval=0 + poll-interval=30 """ -# Disable the 'cisco_unity' option in charon.conf with open('/etc/vmware-tools/tools.conf', 'w') as f: f.write(vmtools_config) |