summaryrefslogtreecommitdiff
path: root/server/server.c
AgeCommit message (Collapse)AuthorFilesLines
2008-11-24Replacing hard-coded paths with configure script substitutions.Stephen Gallagher1-2/+0
Changing the default SBUS locations to be configure script parameters
2008-11-20Start conversion from a fork() and live to a fork()/exec() model.Simo Sorce1-26/+71
To start the dameon now you need to pass the option -s monitor Still have some problems communicating with children.
2008-11-19Add some infrastructure code to add data providers.Simo Sorce1-0/+2
This currently breacks the dameon because of a problem with destroying the monitor dbus server in the children after fork()
2008-10-24Minor/Cosmetic fixesStephen Gallagher1-1/+1
2008-10-21Make return the pid when new process are started.Simo Sorce1-14/+5
Monitor each service and restart it conditionally if it fails. These monitoring is extremely simple at this moment and just uses waitpid() to check if the client is alive, there is no active probing, that will require dbus. Make nsssrv.c read the sss pipe config option for the config db.
2008-10-20Start using the configuration backend in the main server too.Simo Sorce1-7/+25
Now unless properly configured, no services are started by default.
2008-10-09Use classic errno instead of inventing our own, it's broad enough fro atm.Simo Sorce1-1/+1
2008-10-04Add initial nss responder skeletonSimo Sorce1-2/+6
2008-10-04Initital server code.Simo Sorce1-0/+220
Includes test monitor task.