From cbdcaf8b03e80d45b541fc7e9d9668e68de93e77 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 16 Jul 2024 18:51:42 +0100 Subject: Install test-tls instead of testssl. --- make/template/inspircd-test-tls.1 | 46 +++++++++++++++++++++++++++++++++++++++ make/template/inspircd-testssl.1 | 46 --------------------------------------- make/template/main.mk | 8 +++---- 3 files changed, 50 insertions(+), 50 deletions(-) create mode 100644 make/template/inspircd-test-tls.1 delete mode 100644 make/template/inspircd-testssl.1 (limited to 'make') diff --git a/make/template/inspircd-test-tls.1 b/make/template/inspircd-test-tls.1 new file mode 100644 index 000000000..05f1b9602 --- /dev/null +++ b/make/template/inspircd-test-tls.1 @@ -0,0 +1,46 @@ +.\" +.\" InspIRCd -- Internet Relay Chat Daemon +.\" +.\" Copyright (C) 2020, 2024 Sadie Powell +.\" +.\" This file is part of InspIRCd. InspIRCd is free software: you can +.\" redistribute it and/or modify it under the terms of the GNU General Public +.\" License as published by the Free Software Foundation, version 2. +.\" +.\" This program is distributed in the hope that it will be useful, but WITHOUT +.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +.\" FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +.\" details. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with this program. If not, see . +.\" + + +.TH "InspIRCd" "1" "2024-07-16" "InspIRCd @VERSION_FULL@" "InspIRCd Manual" + +.SH "NAME" +\t\fBInspIRCd\fR - \fIthe\fR stable, high-performance and modular Internet Relay Chat Daemon +.BR + +.SH "SYNOPSIS" +\t\fBinspircd-test-tls\fR [selfsigned] + +.SH "OPTIONS" +.TP +.B "hostip" +.br +The hostname or IP address to connect to. +.TP +.B "port" +.br +The TCP port to connect to. +.TP +.br +.B "selfsigned" +Disables checking whether the server certificate is signed by a Certificate Authority. + +.SH "SUPPORT" +IRC support for InspIRCd can be found at ircs://irc.chatspike.net/inspircd. + +Bug reports and feature requests can be filed at https://github.com/inspircd/inspircd/issues. diff --git a/make/template/inspircd-testssl.1 b/make/template/inspircd-testssl.1 deleted file mode 100644 index 39ec0c0bf..000000000 --- a/make/template/inspircd-testssl.1 +++ /dev/null @@ -1,46 +0,0 @@ -.\" -.\" InspIRCd -- Internet Relay Chat Daemon -.\" -.\" Copyright (C) 2020, 2024 Sadie Powell -.\" -.\" This file is part of InspIRCd. InspIRCd is free software: you can -.\" redistribute it and/or modify it under the terms of the GNU General Public -.\" License as published by the Free Software Foundation, version 2. -.\" -.\" This program is distributed in the hope that it will be useful, but WITHOUT -.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -.\" FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -.\" details. -.\" -.\" You should have received a copy of the GNU General Public License -.\" along with this program. If not, see . -.\" - - -.TH "InspIRCd" "1" "2024-06-28" "InspIRCd @VERSION_FULL@" "InspIRCd Manual" - -.SH "NAME" -\t\fBInspIRCd\fR - \fIthe\fR stable, high-performance and modular Internet Relay Chat Daemon -.BR - -.SH "SYNOPSIS" -\t\fBinspircd-testssl\fR [selfsigned] - -.SH "OPTIONS" -.TP -.B "hostip" -.br -The hostname or IP address to connect to. -.TP -.B "port" -.br -The TCP port to connect to. -.TP -.br -.B "selfsigned" -Disables checking whether the server certificate is signed by a Certificate Authority. - -.SH "SUPPORT" -IRC support for InspIRCd can be found at ircs://irc.chatspike.net/inspircd. - -Bug reports and feature requests can be filed at https://github.com/inspircd/inspircd/issues. diff --git a/make/template/main.mk b/make/template/main.mk index 4fa9c1fe6..8e8271ac1 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -278,8 +278,8 @@ ifeq ($(SYSTEM), linux) -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_TXT) @CONFIGURE_DIRECTORY@/inspircd.service $(SCRPATH) 2>/dev/null endif -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_TXT) @CONFIGURE_DIRECTORY@/inspircd.1 $(MANPATH) 2>/dev/null - -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_TXT) @CONFIGURE_DIRECTORY@/inspircd-testssl.1 $(MANPATH) 2>/dev/null - -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_BIN) tools/testssl $(BINPATH)/inspircd-testssl 2>/dev/null + -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_TXT) @CONFIGURE_DIRECTORY@/inspircd-test-tls.1 $(MANPATH) 2>/dev/null + -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_BIN) tools/test-tls $(BINPATH)/inspircd-test-tls 2>/dev/null -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_TXT) docs/conf/*.example.* $(EXAPATH) -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_TXT) docs/conf/codepages/*.example.* $(EXAPATH)/codepages -$(INSTALL) $(INSTFLAGS) -m $(INSTMODE_TXT) docs/conf/providers/*.example.* $(EXAPATH)/providers @@ -313,14 +313,14 @@ clean: deinstall: -rm -f $(BINPATH)/inspircd - -rm -f $(BINPATH)/inspircd-testssl + -rm -f $(BINPATH)/inspircd-test-tls -rm -f $(CONPATH)/help.txt -rm -f $(EXAPATH)/*.example.* -rm -f $(EXAPATH)/codepages/*.example.* -rm -f $(EXAPATH)/providers/*.example.* -rm -f $(EXAPATH)/services/*.example.* -rm -f $(EXAPATH)/sql/*.sql - -rm -f $(MANPATH)/inspircd-testssl.1 + -rm -f $(MANPATH)/inspircd-test-tls.1 -rm -f $(MANPATH)/inspircd.1 -rm -f $(MODPATH)/core_*.$(DLLEXT) -rm -f $(MODPATH)/m_*.$(DLLEXT) -- cgit v1.3.1-10-gc9f91