rosy-file-server: drop this package
Reasons to drop this package: a) this package depends on luci-app-rosy-file-server Unfortunately, it was marked as broken as it is unmaintained. See:34b682afac
b) maintainer is inactive c) rosinson website does not seem to be working Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commitf1893a426a
)
This commit is contained in:
parent
f543e82a4d
commit
495c76cd51
3 changed files with 0 additions and 94 deletions
|
@ -1,52 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2019 rosysong@rosinson.com
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=rosy-file-server
|
||||
PKG_VERSION:=1.0.0
|
||||
PKG_RELEASE:=1
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
|
||||
PKG_MAINTAINER:=Rosy Song <rosysong@rosinson.com>
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/rosy-file-server
|
||||
SUBMENU:=File Transfer
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=Rosy File Server over HTTP
|
||||
PKGARCH:=all
|
||||
endef
|
||||
|
||||
define Package/rosy-file-server/description
|
||||
This package is a configuration management for luci-app-rosy-file-server.
|
||||
endef
|
||||
|
||||
define Package/rosy-file-server/conffiles
|
||||
/etc/config/rosy-file-server
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/rosy-file-server/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d $(1)/etc/config
|
||||
$(INSTALL_BIN) ./files/rosyfs.init $(1)/etc/init.d/rosyfs
|
||||
$(INSTALL_CONF) ./files/rosyfs.config $(1)/etc/config/rosyfs
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,rosy-file-server))
|
|
@ -1,13 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2019 rosysong@rosinson.com
|
||||
#
|
||||
|
||||
config rosyfs default
|
||||
|
||||
# Web title
|
||||
option title 'Rosy File Server'
|
||||
|
||||
# Path to share
|
||||
option target '/www'
|
||||
|
||||
option disabled '0'
|
|
@ -1,29 +0,0 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
#
|
||||
# Copyright (C) 2019 rosysong@rosinson.com
|
||||
#
|
||||
|
||||
START=99
|
||||
USE_PROCD=1
|
||||
SHARE_PATH=/www/rosyfs-share
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger rosyfs
|
||||
}
|
||||
|
||||
start_service() {
|
||||
config_load rosyfs
|
||||
config_get disabled default disabled '0'
|
||||
config_get target default target ''
|
||||
|
||||
[ $disabled -eq 1 ] && return
|
||||
|
||||
[ -n "$target" -a ! "$(readlink $SHARE_PATH)" = "$target" ] && {
|
||||
rm -f $SHARE_PATH
|
||||
ln -s $target $SHARE_PATH
|
||||
}
|
||||
}
|
||||
|
||||
stop_service() {
|
||||
rm -f $SHARE_PATH
|
||||
}
|
Loading…
Reference in a new issue