X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=usr_bin%2Fgrml-init;fp=usr_bin%2Fgrml-init;h=0000000000000000000000000000000000000000;hb=fd86ffcbcd135b49bff36d1b4c2b96735b459f5a;hp=6370a531c758c983edb10ab6604c724733f613ee;hpb=3c1d083e085f2e8ec560100e78a97a9a60fee3a8;p=grml-scripts.git diff --git a/usr_bin/grml-init b/usr_bin/grml-init deleted file mode 100755 index 6370a53..0000000 --- a/usr_bin/grml-init +++ /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 -# 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 #################################################################