Add script run-journalctl + use /bin/sh for all run-* wrappers
[grml-scripts.git] / usr_share / run-journalctl
diff --git a/usr_share/run-journalctl b/usr_share/run-journalctl
new file mode 100755 (executable)
index 0000000..6a01e58
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/sh
+# Filename:      run-journalctl
+# Purpose:       wrapper for getty setup to run journalctl with according options
+# 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.
+################################################################################
+
+exec /bin/journalctl -b -f
+
+## END OF FILE #################################################################