1 Star 0 Fork 0

niushuai / Aria2Dash

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
aria2c 605 Bytes
一键复制 编辑 原始数据 按行查看 历史
MasterChief 提交于 2020-03-25 09:19 . Update aria2c
#!/bin/sh
### BEGIN INIT INFO
# Provides: aria2
# Required-Start: $remote_fs $network
# Required-Stop: $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Aria2 Downloader
### END INIT INFO
case "$1" in
start)
echo -n "已开启Aria2c"
sudo -u root bash /root/.aria2/updatetracker.sh
sudo -u root aria2c --conf-path=/root/.aria2/aria2.conf -D
;;
stop)
echo -n "已关闭Aria2c"
sudo -u root killall aria2c
;;
restart)
killall aria2c
sudo -u root bash /root/.aria2/updatetracker.sh
sudo -u root aria2c --conf-path=/root/.aria2/aria2.conf -D
;;
esac
exit
1
https://gitee.com/niushuai233/Aria2Dash.git
git@gitee.com:niushuai233/Aria2Dash.git
niushuai233
Aria2Dash
Aria2Dash
master

搜索帮助