Add LSB header to init script grml-autoconfig.strace
[grml-autoconfig.git] / etc / init.d / grml-autoconfig.strace
1 #!/bin/sh
2 # Filename:      grml-autoconfig.strace
3 # Purpose:       strace grml-autoconfig for use with mksquashfs/mkisos sort option
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 ################################################################################
8
9 # http://wiki.debian.org/LSBInitScripts =>
10 ### BEGIN INIT INFO
11 # Provides:          grml-autoconfig
12 # Required-Start:
13 # Required-Stop:
14 # Should-Start:      udev
15 # Default-Start:     S 2 3 4 5
16 # Default-Stop:
17 ### END INIT INFO
18
19 /usr/bin/strace -f -eopen,stat64,execve -o /etc/grml/strace.autoconfig /etc/init.d/grml-autoconfig "$*" &
20
21 ## END OF FILE #################################################################