Forum archive
Script Install of Eclipse to patch Core 11.-
Well the good news is I created a pretty fine draft of an Eden Dev environment. I should have reviewed the TKL Client threads; but as it turns out, what I put together is very close.
One problem: Install of Eclipse from conf scripts killed the patch process - no errors were thrown, but no ISO was produced and .cdroot and .rootfs weren't cleaned. When I tried to remove them by hand, I got a long list of permission problems. Troubleshooting package by package let me to Eclipse or its dependencies the patch fails in either of the following cases:
#!/bin/bash -ex
apt-get update
apt-get install eclipse
or
#!/bin/bash -ex
apt-get update
apt-get install eclipse-platform
#!/bin/bash -ex
apt-get update
apt-get install eclipse-pde
On the bright side, I wrote my first init-hook (is that the right term?) to install on first use.
But this ideal for Eden's use scenarios. Anyone know how to resolve this tklpatch issue?
I had the same symptoms with the OVZ convertor patch that I have worked on. Turns out it was caused by a service still running in the chroot. I suspect that one of the dependancies installed with Eclipse is starting as a service. You need to stop it before the patch process can complete.
One way to see if that might be it is to watch the install process (or send it to a log file). Look for the telltale '[OK]' service start announcement.