Germán Arias | 8 Jul 02:29
Favicon

Problems with gpbs solved

On my .profile file I had the code:

     . /home/german/GNUstep/System/Library/Makefiles/GNUstep.sh

     if [ 'gdomap -L GDNCServer | grep -c Unable' == 1 ]; then
       echo "Starting GNUstep services..."
       gdnc
       gpbs
     fi
     make_services

gdomap run, but for an unknown reason gdnc and gpbs didn't run. The problem was
that when I ran an app the gpbs took some seconds to ran (3 or 4 seconds). Even,
didn't run in some cases. Then I change the code on my .profile file to 

    . /home/german/GNUstep/System/Library/Makefiles/GNUstep.sh
    gdnc
    gpbs
    make_services

Now gdnc and gpbs run from my session's beginning.

Gmane