On Tue, 4 Sep 2007 19:55:44 -0700
"Kevin O'Gorman" <[EMAIL PROTECTED]> wrote:
> treat ~ # cd /etc/init.d
> treat init.d # ./apache2 stop
> * Stopping apache2 ...
> No /usr/sbin/apache2 found running; none
> killed.
> [ !! ]
> treat init.d # ./apache2 start
> * WARNING: apache2 has already been started.
Have you tried # /etc/init.d/apache2 zap
# killall apache2
# /etc/init.d/apache2 start
?
> treat init.d # ./apache2 status
> * Caching service dependencies ...
> * Service 'cupsd' should be AFTER service 'vmware', but one of
> * the services 'vmware' depends on, depends on
> 'cupsd'!
the dependancies are pretty easy to find and even adjust
in /etc/init.d; in fact, for cups, head does a really nice job of
clipping the whole thing as an example:
|[EMAIL PROTECTED] ~ $ head /etc/init.d/cupsd
|#!/sbin/runscript
|
|depend() {
| use net
| after logger
| before nfs
| use hotplug
| after vmware
|}
you can list for vmware too, and see which of those depends on cups,
and fix this circular dependency issue; if you do so, you might want to
consider filing a bug report so others can fix it automatically on next
update.
--
[EMAIL PROTECTED] mailing list