op-packages/gowebdav/files/webdav.init
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

23 lines
378 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2021 ImmortalWrt
START=90
STOP=10
WEBDAV="/usr/bin/webdav"
WEBDAVCONFIG="/etc/webdav/webdav.yaml"
start() {
local enabled="$(uci get webdav.config.enabled)"
stop
[ "${enabled}" == "1" ] || exit 0
export HOME="/root/"
"${WEBDAV}" -c "${WEBDAVCONFIG}" >/dev/null 2>&1 &
}
stop() {
kill -9 `pgrep "${WEBDAV}"` >/dev/null 2>&1
}