Drop /etc/init.d/grml-autoconfig.strace
authorMichael Prokop <mika@grml.org>
Fri, 7 May 2021 15:06:36 +0000 (17:06 +0200)
committerMichael Prokop <mika@grml.org>
Fri, 7 May 2021 15:24:02 +0000 (17:24 +0200)
This isn't used since ages, so no point in keeping it around

etc/init.d/grml-autoconfig.strace [deleted file]

diff --git a/etc/init.d/grml-autoconfig.strace b/etc/init.d/grml-autoconfig.strace
deleted file mode 100755 (executable)
index 6825727..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-# Filename:      grml-autoconfig.strace
-# Purpose:       strace grml-autoconfig for use with mksquashfs/mkisos sort option
-# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
-# Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
-################################################################################
-
-# http://wiki.debian.org/LSBInitScripts =>
-### BEGIN INIT INFO
-# Provides:          grml-autoconfig
-# Required-Start:    $remote_fs
-# Required-Stop:     $remote_fs
-# Should-Start:      udev
-# Default-Start:     S 2 3 4 5
-# Default-Stop:
-### END INIT INFO
-
-# {{{ placeholder functions for start/restart/reload/stop
-[[ $1 == "start" ]] && true
-
-if [[ $1 == "restart" ]] ; then
-  echo "$0 restart - empty placeholder. Doing nothing but running."
-fi
-
-if [[ $1 == "force-reload" ]] ; then
-  echo "$0 force-reload - empty placeholder. Doing nothing but running."
-fi
-
-if [[ $1 == "stop" ]] ; then
-  echo "$0 stop - empty placeholder. Doing nothing but exiting."
-  exit 1
-fi
-# }}}
-
-/usr/bin/strace -f -eopen,stat64,execve -o /etc/grml/strace.autoconfig /etc/init.d/grml-autoconfig "$*" &
-
-## END OF FILE #################################################################