update nextcloud

This commit is contained in:
YGAS 2021-09-23 14:38:13 +08:00
parent 5fcb2ed2e5
commit 0f86e00741
4 changed files with 7 additions and 6 deletions

View File

@ -3,8 +3,8 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-homeassistant
PKG_VERSION:=1.0.0
PKG_RELEASE:=20210915
PKG_VERSION:=1.0.1
PKG_RELEASE:=20210923
LUCI_TITLE:=LuCI support for homeassistant
LUCI_PKGARCH:=all

View File

@ -3,8 +3,8 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-nextcloud
PKG_VERSION:=1.0.0
PKG_RELEASE:=20210912
PKG_VERSION:=1.0.1
PKG_RELEASE:=20210923
LUCI_TITLE:=LuCI support for nextcloud
LUCI_PKGARCH:=all

View File

@ -63,6 +63,7 @@ function uninstall_container()
local status = container_status()
local container_id = status.container_id
util.exec("docker container rm '"..container_id.."'")
util.exec("rm -rf /root/usr/share/nextcloud")
end
-- 总结:

View File

@ -13,10 +13,10 @@ function sync_value_to_file(value, file)
end
function view_cfg.cfgvalue()
return fs.readfile("/usr/share/jellyfin/install.sh") or ""
return fs.readfile("/usr/share/nextcloud/install.sh") or ""
end
function view_cfg.write(self, section, value)
sync_value_to_file(value, "/usr/share/jellyfin/install.sh")
sync_value_to_file(value, "/usr/share/nextcloud/install.sh")
end
return s