# # Copyright (C) 2017 Bjørn Mork # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=conserver PKG_VERSION:=8.2.2 PKG_RELEASE:=1 PKG_MAINTAINER:=Bjørn Mork PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/conserver/conserver.git PKG_SOURCE_VERSION:=v$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_MIRROR_HASH:=27d92e6c04e97cd0884774eace0b44f30087695927bcce8addc11dba9c090d7c PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE PKG_FIXUP:=autoreconf PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk define Package/conserver SECTION:=net CATEGORY:=Network TITLE:=Connect multiple user to a serial console with logging URL:=http://www.conserver.com/ DEPENDS:=+libopenssl endef define Package/conserver/description Conserver is an application that allows multiple users to watch a serial console at the same time. It can log the data, allows users to take write-access of a console (one at a time), and has a variety of bells and whistles to accentuate that basic functionality. The idea is that conserver will log all your serial traffic so you can go back and review why something crashed, look at changes (if done on the console), or tie the console logs into a monitoring system (just watch the logfiles it creates). With multi-user capabilities you can work on equipment with others, mentor, train, etc. It also does all that client-server stuff so that, assuming you have a network connection, you can interact with any of the equipment from home or wherever. endef define Package/conserver/conffiles /etc/conserver/conserver.cf /etc/conserver/conserver.passwd /etc/conserver/console.cf endef CONFIGURE_ARGS += \ --with-openssl \ --sysconfdir=/etc/conserver \ --with-port=3109 \ --with-logfile=/var/log/conserver/server.log define Package/conserver/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/conserver $(1)/usr/sbin/ $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/console $(1)/usr/bin/ $(INSTALL_DIR) $(1)/etc/conserver $(INSTALL_CONF) ./files/conserver.cf $(1)/etc/conserver/ $(INSTALL_CONF) ./files/console.cf $(1)/etc/conserver/ touch $(1)/etc/conserver/conserver.passwd $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/conserver.init $(1)/etc/init.d/conserver endef $(eval $(call BuildPackage,conserver))