19 lines
552 B
Plaintext
19 lines
552 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
# _ _ ____ ____
|
|
# / \ _ __(_) __ _|___ \ | _ \ _ __ ___
|
|
# / _ \ | '__| |/ _` | __) | | |_) | '__/ _ \
|
|
# / ___ \| | | | (_| |/ __/ | __/| | | (_) |
|
|
# /_/ \_\_| |_|\__,_|_____| |_| |_| \___/
|
|
#
|
|
# https://github.com/P3TERX/Aria2-Pro-Docker
|
|
#
|
|
# Copyright (c) 2020-2021 P3TERX <https://p3terx.com>
|
|
#
|
|
# This is free software, licensed under the MIT License.
|
|
# See /LICENSE for more information.
|
|
|
|
umask ${UMASK_SET:-022}
|
|
|
|
exec s6-setuidgid p3terx aria2c \
|
|
--conf-path=/config/aria2.conf
|