Release new version 2.13.0
[grml-scripts.git] / usr_sbin / noprompt
1 #!/bin/sh
2 # Filename:      noprompt
3 # Purpose:       wrapper script to avoid prompting when rebooting/halt grml system
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 touch /etc/noprompt
10 exec $*
11
12 ## END OF FILE #################################################################