mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			346 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			346 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/init/init.c
 | |
| +++ b/init/init.c
 | |
| @@ -460,8 +460,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) {
 | |
| +				if (a->terminal[0] && access(a->terminal, R_OK | W_OK))
 | |
| +					continue;
 | |
|  				a->pid = run(a);
 | |
| +			}
 | |
|  		}
 | |
|  	}
 | |
|  }
 |