You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
468 B
16 lines
468 B
3 years ago
|
#!/bin/sh
|
||
|
GREEN='\033[0;32m'
|
||
|
RESET='\033[0m'
|
||
|
if [ ! -f /etc/cloudreve/aria2c.conf ]; then
|
||
|
echo -e "[${GREEN}aria2c${RESET}] aria2c config not found. Generating..."
|
||
|
secret=$(tr -dc A-Za-z0-9 </dev/urandom | head -c 13)
|
||
|
echo -e "[${GREEN}aria2c${RESET}] Generated port: 6800, secret: $secret"
|
||
|
cat <<EOF > /etc/cloudreve/aria2c.conf
|
||
|
enable-rpc=true
|
||
|
rpc-listen-port=6800
|
||
|
rpc-secret=$secret
|
||
|
EOF
|
||
|
fi
|
||
|
aria2c --conf-path /etc/cloudreve/aria2c.conf -D
|
||
|
cloudreve
|