mirror of
https://github.com/tteck/Proxmox.git
synced 2025-02-15 06:09:15 +01:00
[Aria2] Update to include config file
This commit is contained in:
parent
447482cada
commit
b92110b17a
1 changed files with 19 additions and 2 deletions
|
@ -23,7 +23,6 @@ msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
msg_info "Installing Aria2"
|
msg_info "Installing Aria2"
|
||||||
DEBIAN_FRONTEND=noninteractive $STD apt-get -o Dpkg::Options::="--force-confold" install -y aria2
|
DEBIAN_FRONTEND=noninteractive $STD apt-get -o Dpkg::Options::="--force-confold" install -y aria2
|
||||||
systemctl enable -q --now apt-cacher-ng
|
|
||||||
msg_ok "Installed Aria2"
|
msg_ok "Installed Aria2"
|
||||||
|
|
||||||
read -r -p "Would you like to add ar? <y/N> " prompt
|
read -r -p "Would you like to add ar? <y/N> " prompt
|
||||||
|
@ -46,10 +45,13 @@ RestartSec=120
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target' >$service_path
|
WantedBy=multi-user.target' >$service_path
|
||||||
|
systemctl enable --now -q aria2.service
|
||||||
msg_ok "Installed AriaNG"
|
msg_ok "Installed AriaNG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
service_path="/etc/systemd/system/aria2.service"
|
|
||||||
|
service_path="/etc/systemd/system/aria2.service"
|
||||||
echo '[Unit]
|
echo '[Unit]
|
||||||
Description=Aria2c download manager
|
Description=Aria2c download manager
|
||||||
After=network.target
|
After=network.target
|
||||||
|
@ -65,8 +67,23 @@ Restart=on-failure
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target' >$service_path
|
WantedBy=multi-user.target' >$service_path
|
||||||
|
|
||||||
|
conf_path="/root/aria2.daemon"
|
||||||
|
echo 'continue
|
||||||
|
dir=/var/www/downloads
|
||||||
|
file-allocation=falloc
|
||||||
|
max-connection-per-server=4
|
||||||
|
max-concurrent-downloads=2
|
||||||
|
max-overall-download-limit=0
|
||||||
|
min-split-size=25M
|
||||||
|
rpc-allow-origin-all=true
|
||||||
|
rpc-secret=YouShouldChangeThis
|
||||||
|
input-file=/var/tmp/aria2c.session
|
||||||
|
save-session=/var/tmp/aria2c.session' >$conf_path
|
||||||
systemctl enable --now -q aria2.service
|
systemctl enable --now -q aria2.service
|
||||||
|
|
||||||
|
msg_ok "Created Service"
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
customize
|
customize
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue