--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Hi release team,
VMware asked me to change the boot order of vmtoolsd to start before
cloud init. This was necessary as the cloud-init is started early
in the boot process now - and without running vmtoolsd before
cloud-init a VM customization is not possible.
For details see
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859677
https://bugs.launchpad.net/cloud-init/+bug/1667831
Debdiff is attached.
unblock open-vm-tools/2:10.1.5-5055683-3
Thanks,
Bernd
--
Bernd Zeimetz Debian GNU/Linux Developer
http://bzed.de http://www.debian.org
GPG Fingerprint: ECA1 E3F2 8E11 2432 D485 DD95 EB36 171A 6FF9 435F
diff --git a/debian/changelog b/debian/changelog
index 658a4222..5bcddde2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+open-vm-tools (2:10.1.5-5055683-3) unstable; urgency=medium
+
+ * [0aa95b6] Start open-vm-tools before cloud-init-local.service.
+ Required for a working guest customization as reported by VMware.
+ Also add cloud-init to 'Suggests'.
+ Thanks to Sankar Tanguturi (Closes: #859677)
+
+ -- Bernd Zeimetz <bzed@debian.org> Sun, 09 Apr 2017 21:54:21 +0200
+
open-vm-tools (2:10.1.5-5055683-2) unstable; urgency=medium
* [651cdfe] Depend on iproute2.
diff --git a/debian/control b/debian/control
index 5935c52f..432b11f7 100644
--- a/debian/control
+++ b/debian/control
@@ -19,7 +19,7 @@ Package: open-vm-tools
Architecture: amd64 i386
Depends: ${misc:Depends}, ${shlibs:Depends}, pciutils, iproute2
Recommends: ethtool, zerofree, fuse, lsb-release
-Suggests: open-vm-tools-desktop
+Suggests: open-vm-tools-desktop, cloud-init
Breaks: open-vm-tools-desktop (<< 2:10.0.7-3227872-2~)
Replaces: open-vm-tools-desktop (<< 2:10.0.7-3227872-2~)
Description: Open VMware Tools for virtual machines hosted on VMware (CLI)
diff --git a/debian/open-vm-tools.service b/debian/open-vm-tools.service
index 426d4fbd..a988f08e 100644
--- a/debian/open-vm-tools.service
+++ b/debian/open-vm-tools.service
@@ -2,6 +2,8 @@
Description=Service for virtual machines hosted on VMware
Documentation=http://open-vm-tools.sourceforge.net/about.php
ConditionVirtualization=vmware
+DefaultDependencies=no
+Before=cloud-init-local.service
[Service]
ExecStart=/usr/bin/vmtoolsd
--- End Message ---