2008-08-20 22:00:34 +08:00
|
|
|
--- a/init/init.c
|
|
|
|
+++ b/init/init.c
|
2009-09-28 20:38:46 +08:00
|
|
|
@@ -451,8 +451,11 @@ static void run_actions(int action_type)
|
|
|
|
/* Only run stuff with pid == 0. If pid != 0,
|
|
|
|
* it is already running
|
|
|
|
*/
|
|
|
|
- if (a->pid == 0)
|
|
|
|
+ if (a->pid == 0) {
|
2009-11-23 01:00:50 +08:00
|
|
|
+ if (a->terminal[0] && access(a->terminal, R_OK | W_OK))
|
2009-09-28 20:38:46 +08:00
|
|
|
+ continue;
|
|
|
|
a->pid = run(a);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|