4743e10
diff -up cups-1.5b1/scheduler/main.c.pid cups-1.5b1/scheduler/main.c
4743e10
--- cups-1.5b1/scheduler/main.c.pid	2011-05-18 22:44:16.000000000 +0200
4743e10
+++ cups-1.5b1/scheduler/main.c	2011-05-23 18:01:20.000000000 +0200
4743e10
@@ -311,6 +311,8 @@ main(int  argc,				/* I - Number of comm
aee6db4
     * Setup signal handlers for the parent...
aee6db4
     */
aee6db4
 
aee6db4
+    pid_t pid;
aee6db4
+
aee6db4
 #ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
aee6db4
     sigset(SIGUSR1, parent_handler);
aee6db4
     sigset(SIGCHLD, parent_handler);
4743e10
@@ -334,7 +336,7 @@ main(int  argc,				/* I - Number of comm
aee6db4
     signal(SIGHUP, SIG_IGN);
aee6db4
 #endif /* HAVE_SIGSET */
aee6db4
 
aee6db4
-    if (fork() > 0)
aee6db4
+    if ((pid = fork()) > 0)
aee6db4
     {
aee6db4
      /*
aee6db4
       * OK, wait for the child to startup and send us SIGUSR1 or to crash
4743e10
@@ -346,7 +348,15 @@ main(int  argc,				/* I - Number of comm
aee6db4
         sleep(1);
aee6db4
 
aee6db4
       if (parent_signal == SIGUSR1)
aee6db4
+      {
aee6db4
+        FILE *f = fopen ("/var/run/cupsd.pid", "w");
aee6db4
+        if (f)
aee6db4
+        {
aee6db4
+          fprintf (f, "%d\n", pid);
aee6db4
+          fclose (f);
aee6db4
+        }
aee6db4
         return (0);
aee6db4
+      }
aee6db4
 
aee6db4
       if (wait(&i) < 0)
aee6db4
       {