mirror of
https://github.com/xdtianyu/scripts.git
synced 2025-08-12 00:45:33 +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
|
|
}
|