Run our TTYs with our own tty runner
[grml-scripts.git] / usr_bin / grml-init
diff --git a/usr_bin/grml-init b/usr_bin/grml-init
deleted file mode 100755 (executable)
index 6370a53..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/dash
-# Filename:      grml-init
-# Purpose:       fix tty permissions and run zsh
-# 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.
-################################################################################
-
-# export variable USER for use withing GNU screen:
-  export USER=`id -un`
-
-# fix rungetty:
-  TTY=`tty`
-  sudo chown $USER.$USER $TTY
-
-# now start the shell:
-  exec /bin/zsh
-
-## END OF FILE #################################################################