mirror of
https://github.com/kenzok8/small-package
synced 2025-01-09 19:47:46 +08:00
49 lines
1.3 KiB
Bash
Executable File
49 lines
1.3 KiB
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
USE_PROCD=1
|
|
|
|
START=99
|
|
STOP=15
|
|
|
|
NAME=aliyundrive-fuse
|
|
|
|
uci_get_by_type() {
|
|
local ret=$(uci get $NAME.@$1[0].$2 2>/dev/null)
|
|
echo ${ret:=$3}
|
|
}
|
|
|
|
start_service() {
|
|
local enable=$(uci_get_by_type default enable)
|
|
case "$enable" in
|
|
1|on|true|yes|enabled)
|
|
local refresh_token=$(uci_get_by_type default refresh_token)
|
|
local mount_point=$(uci_get_by_type default mount_point)
|
|
local read_buf_size=$(uci_get_by_type default read_buffer_size 10485760)
|
|
local allow_other=$(uci_get_by_type default allow_other 0)
|
|
|
|
local extra_options=""
|
|
|
|
if [ "$allow_other" = "1" ]; then
|
|
extra_options="$extra_options --allow-other"
|
|
fi
|
|
|
|
mkdir -p "$mount_point"
|
|
procd_open_instance
|
|
procd_set_param command /bin/sh -c "/usr/bin/$NAME $extra_options -S $read_buf_size --workdir /var/run/$NAME $mount_point >>/var/log/$NAME.log 2>&1"
|
|
procd_set_param pidfile /var/run/$NAME.pid
|
|
procd_set_param env REFRESH_TOKEN="$refresh_token"
|
|
case $(uci_get_by_type default debug) in
|
|
1|on|true|yes|enabled)
|
|
procd_append_param env RUST_LOG="aliyundrive_fuse=debug" ;;
|
|
*) ;;
|
|
esac
|
|
procd_close_instance ;;
|
|
*)
|
|
stop_service ;;
|
|
esac
|
|
}
|
|
|
|
service_triggers() {
|
|
procd_add_reload_trigger "aliyundrive-fuse"
|
|
}
|