aboutsummaryrefslogtreecommitdiff
path: root/net/xinetd
Commit message (Collapse)AuthorAge
* treewide: refresh hashes after move to use ZSTD as defaultRobert Marko2024-04-07
| | | | | | | | With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
* xinetd: fix URLRosen Penev2023-01-14
| | | | | | Something went wrong here. Switch to git tarballs. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* xinetd: add processing of redirect option in init scriptHelge Mader2023-01-11
| | | | Signed-off-by: Helge Mader <ma@dev.tdt.de>
* xinetd: fix bad printf formatsRosen Penev2022-01-30
| | | | | | Easier to use the proper C macro. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* xinetd: fix syntax violationFritz D. Ansel2021-08-12
| | | | | | see https://github.com/openwrt/packages/pull/16318#discussion_r687481110 Signed-off-by: Fritz D. Ansel <fdansel@yandex.ru>
* xinetd: support for anonym configsFritz D. Ansel2021-08-12
| | | | | | | config by names clashes if a service supports udp and tcp, eg time and daytime Signed-off-by: Fritz D. Ansel <fdansel@yandex.ru>
* xinetd: honor ${IPKG_INSTROOT} when sourcing /lib/functions.shSven Roederer2021-04-04
| | | | | | Avoid "file not found"-error when embedding via Imagebuilder. Signed-off-by: Sven Roederer <devel-sven@geroedel.de>
* xinetd: do not restart service after config change if it is not runningHelge Mader2020-11-05
| | | | Signed-off-by: Helge Mader <ma@dev.tdt.de>
* xinetd: update config sample to latest requirementsHelge Mader2020-10-23
| | | | Signed-off-by: Helge Mader <ma@dev.tdt.de>
* xinetd: include additional (runtime) directory in configuration fileHelge Mader2020-10-23
| | | | | | | The additional directory is created and can be used e.g. for configurations which are created e.g. dynamically from an uci config. Signed-off-by: Helge Mader <ma@dev.tdt.de>
* xinetd: save configurations in /etc/xinetd.d on sysupgradeHelge Mader2020-10-23
| | | | | | | For applications writing their own xinetd configuration to the /etc/xinetd.d directory it would be necessary to save them (e.g. a user edits them manually) Signed-off-by: Helge Mader <ma@dev.tdt.de>
* xinetd: update PKG_RELEASE to 9Helge Mader2020-10-23
| | | | Signed-off-by: Helge Mader <ma@dev.tdt.de>
* xinetd: fix xinetd reload problemHelge Mader2020-09-28
| | | | Signed-off-by: Helge Mader <ma@dev.tdt.de>
* xinetd: start service in foreground for procdFlorian Eckert2020-07-10
| | | | | | | Since we use now procd for xinetd, we have to start the service with the option `-dontfork` to make procd happy. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* xinetd: change PKG_MAINTAINERFlorian Eckert2020-07-10
| | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* xinetd: do not save xinet.d configrations on sysupgradeFlorian Eckert2020-06-09
| | | | | | | | | | | | Since we can now configure xinet.d with uci, it is no longer necessary to save the configuration in /etc/xinet.d/* when upgrading the system. This was wrong anyway, because other packages can also store configuration there. If this configuration get changed then the new/changed one will never get applied, because the configration is always replaced with the saved configration during sysupgrade. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* xinetd: add support for UCI configurationHelge Mader2020-06-09
| | | | Signed-off-by: Helge Mader <ma@dev.tdt.de>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* xinetd: Update URLs.Rosen Penev2018-03-25
| | | | | | | | xinetd.org has been defunct for a long time and it seems the main developer moved everything to GitHub. Discovered with uscan. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* net/xinet.d: add /etc/xinet.d/ dir to conffiles (#4096)Florian Eckert2017-03-06
| | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* xinetd: fix musl compatibilityJo-Philipp Wich2015-06-17
| | | | | | | | | | | | | Pass HAVE_RLIM_T via TARGET_CPPFLAGS since configure uses that define but never actually declares it. Without doing that, `config.h` tries to declare `rlim_t` itself which leads to `config.h:126:16: error: 'long long long' is too long for GCC` with musl on at least x86_64. Also refresh patches while we're at it. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* xinetd: socket bind: Invalid argument (errno = 22) when using USERID on ipv6Christian Schoenebeck2014-08-16
| | | | | | | | | | | | | | | | | | | Use right size of addresses in bind() call. Also use getpeername addresses when connecting to ident service to prevent address family mismatch between socket(), bind() and connect() calls. --- Christian Schoenebeck via github pull request #205: Reported for a long time in the web. Still exists in the current sources. Already reported and offert on TRAC Ticket #15821. You can find a lot of entries on "Google" about the reported problem. I got the same error on my WNDR3800 and von VirtualBox X86. I copied the patch to my local trunk build system and recompiled. The problem was fixed. Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com> Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
* xinetd: Add PKG_LICENSE informationJonathan McCrohan2014-08-14
| | | | Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
* muninlite,mtr,sslh,wavemon,xinetd: s/MAINTAINER/PKG_&/Jonathan McCrohan2014-08-14
| | | | | | | | Replace the MAINTAINER lines in packages that I maintain with PKG_MAINTAINER lines, to be consistent with the rest of the packages tree. Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
* xinetd: Import from oldpackages, add myself as maintainerJonathan McCrohan2014-07-09
Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>