4.4 GNUstep deamons
Set up your system to execute some GNUstep deamons. This is optional
because if you don’t do this, they will be started automatically when
you run your first GNUstep app:
- gdomap - Put this in a system startup file, like /etc/rc.local or /etc/rc.d/rc.local (customize for your system)
if [ -f /usr/local/bin/gdomap ]; then
/usr/local/bin/gdomap
fi
- gdnc - Start after sourcing GNUstep.sh (e.g. in .profile)
- gpbs - Same as with gdnc, make sure X-Windows is running.
- make_services - Not a deamon, but a tool that needs to be run everytime
you install a new Application or service. This is NOT run automatically.
if [ `gdomap -L GDNCServer | grep -c Unable` == 1 ]; then
echo "Starting GNUstep services..."
gdnc
gpbs
fi
make_services