diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-20 20:36:06 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-20 20:38:52 +0200 |
commit | 27a15f8577cd0bf848f30ca2ecb8e147055c3618 (patch) | |
tree | 434a139825bd1f605fc82548f37df532eceda0ef | |
parent | 4e1d59d0d925b8ebf5ee7b96635b0f5cad80830a (diff) | |
download | vyos-build-27a15f8577cd0bf848f30ca2ecb8e147055c3618.tar.gz vyos-build-27a15f8577cd0bf848f30ca2ecb8e147055c3618.zip |
vmware: tools.conf is now provided via vyos-1x-vmware package
-rwxr-xr-x | data/live-build-config/hooks/live/30-openvmtools-configs.chroot | 14 |
1 files changed, 0 insertions, 14 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 deleted file mode 100755 index e3762cc9..00000000 --- a/data/live-build-config/hooks/live/30-openvmtools-configs.chroot +++ /dev/null @@ -1,14 +0,0 @@ -#!/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) |