From ca2dff0b97df0ceb8f6357de3a4375ebc09646dd Mon Sep 17 00:00:00 2001 Message-Id: From: Bruno Victal Date: Wed, 5 Jul 2023 16:43:31 +0100 Subject: [PATCH] Skip installing init file. The file refers to hardcoded paths. --- Makefile.am | 2 +- config/Makefile.am | 5 ----- config/mactelnetd.init | 21 --------------------- config/mactelnetd.users | 12 ------------ configure.ac | 2 +- 5 files changed, 2 insertions(+), 40 deletions(-) delete mode 100644 config/Makefile.am delete mode 100644 config/mactelnetd.init delete mode 100644 config/mactelnetd.users diff --git a/Makefile.am b/Makefile.am index 4e67178..264d8ea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ AUTOMAKE_OPTIONS = foreign -SUBDIRS = src doc config po +SUBDIRS = src doc po CFLAGS = --pedantic -Wall -std=c99 -O3 LDFLAGS = diff --git a/config/Makefile.am b/config/Makefile.am deleted file mode 100644 index 574a2e0..0000000 --- a/config/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -dist_sysconf_DATA = mactelnetd.users - -install-exec-hook: - chmod 600 $(DESTDIR)$(sysconfdir)/mactelnetd.users - chown root $(DESTDIR)$(sysconfdir)/mactelnetd.users diff --git a/config/mactelnetd.init b/config/mactelnetd.init deleted file mode 100644 index b7ddddf..0000000 --- a/config/mactelnetd.init +++ /dev/null @@ -1,21 +0,0 @@ -# mactelnetd - MAC-Telnet server -# -# The MAC-Telnet server provides telnet access via MAC addresses. -# -# Ubuntu upstart config: - -description "MAC-Telnet server" - -start on filesystem -stop on runlevel [!2345] - -respawn -respawn limit 10 5 -umask 022 - -pre-start script - test -O /etc/mactelnetd.users || { stop; exit 0; } - test -x /usr/sbin/mactelnetd || { stop; exit 0; } -end script - -exec /usr/sbin/mactelnetd -f diff --git a/config/mactelnetd.users b/config/mactelnetd.users deleted file mode 100644 index c140e36..0000000 --- a/config/mactelnetd.users +++ /dev/null @@ -1,12 +0,0 @@ -# Users file for MAC-Telnetd -# -#################################################################### -# WARNING: This file has passwords written in plain-text. # -# Make sure this file is owned and only readable by root. # -#################################################################### -# -# Each line consists of a username and a password seperated by :. -# Usernames must be existing users from passwd. -# -# Format: -#username:password diff --git a/configure.ac b/configure.ac index c0fdda4..9d2f7d7 100644 --- a/configure.ac +++ b/configure.ac @@ -34,4 +34,4 @@ AC_FUNC_MALLOC AC_FUNC_STRNLEN AC_CHECK_FUNCS([alarm bzero clock_gettime getpass gettimeofday inet_ntoa memset select setenv setlocale socket strcasecmp strerror strncasecmp sysinfo uname]) -AC_OUTPUT(Makefile src/Makefile doc/Makefile config/Makefile po/Makefile.in) +AC_OUTPUT(Makefile src/Makefile doc/Makefile po/Makefile.in) -- 2.40.1 pan class='msg-tooltip'>* gnu/packages/java.scm (java-zstd): New variable. Julien Lepiller 2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès 2021-07-12gnu: java-xz: Update to 1.9....* gnu/packages/java-compression.scm (java-xz): Update to 1.9. [arguments]: Build with openjdk9. Efraim Flashner 2021-07-11gnu: java-xz: Mark source as zipbomb....* gnu/packages/java-compression.scm (java-xz)[source]: Download source as zipbomb. [argments]: Remove custom 'chdir phase. Efraim Flashner 2021-02-27gnu: java-snappy: Fix checks when build machine has too much memory....* gnu/packages/java-compression.scm (java-snappy)[arguments]: Add set-test-memory-size phase. This fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=46780>. Thanks to zimoun for the solving idea. The CachingBufferPoolTest tries to allocate a lot of memory (20GB) and the test succeeds if there is not enough memory available in the JVM. When the build machine has a lot of memory (which is the case on the Guix CI system), the JVM will use more than 20GB as maximum heap size. In consequence, the test fails. The new phase adds a maxmemory size of 2G for the tests. Thus all other tests will have enough memory and the CachingBufferPoolTest will fail. Björn Höfling 2020-08-19gnu: java-snappy: Update to 1.1.7.5....* gnu/packages/java-compression.scm (java-snappy): Update to 1.1.7.5. Tobias Geerinckx-Rice 2020-07-17gnu: maven: Install from pom file....* gnu/packages/java.scm (java-plexus-container-default-bootstrap) (java-plexus-component-annotations, java-plexus-cipher, java-asm) (java-jsr250, java-commons-cli, java-slf4j-api, java-slf4j-simple) (java-bsh, java-jboss-el-api-spec, java-jboss-interceptors-api-spec) (java-cdi-api, java-eclipse-sisu-plexus): Install from pom file. * gnu/packages/maven.scm (maven-resolver-api, maven-resolver-spi) (maven-resolver-util, maven-resolver-connector-basic, maven-resolver-impl) (java-plexus-utils, maven-artifact, maven-model, maven-builder-support) (maven-settings, maven-settings-builder, maven-model-builder) (maven-repository-metadata, maven-resolver-provider, maven-plugin-api) (maven-core, maven-embedder, maven-compat): Install from pom file. Julien Lepiller 2020-07-17gnu: java-plexus-archiver: Update to 4.2.2....* gnu/packages/java.scm (java-plexus-archiver): Update to 4.2.2. (java-plexus-container-default, java-commons-compress) (java-geronimo-xbean-reflect): Install from pom file. (java-guava): Install from pom [source]: Use git source instead of generated source jar. * gnu/packages/java-compression.scm (java-xz, java-iq80-snappy): Install from pom. Julien Lepiller