mirror of
				https://github.com/xdtianyu/scripts.git
				synced 2025-11-04 18:28:18 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh /etc/rc.common
 | 
						|
# Copyright (C) 2006-2011 OpenWrt.org
 | 
						|
 | 
						|
SERVICE_USE_PID=1
 | 
						|
 | 
						|
START=50
 | 
						|
 | 
						|
start() {
 | 
						|
    umask 0000
 | 
						|
    aria2c  --daemon=true --enable-rpc --rpc-listen-all=false -D --conf-path=/etc/aria2.conf
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
stop() {
 | 
						|
	/usr/bin/killall aria2c
 | 
						|
}
 |