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