summaryrefslogtreecommitdiff
path: root/packages/keylaunch/files/80chvt-SUID
diff options
context:
space:
mode:
Diffstat (limited to 'packages/keylaunch/files/80chvt-SUID')
-rw-r--r--packages/keylaunch/files/80chvt-SUID25
1 files changed, 0 insertions, 25 deletions
diff --git a/packages/keylaunch/files/80chvt-SUID b/packages/keylaunch/files/80chvt-SUID
deleted file mode 100644
index e3b4efef5d..0000000000
--- a/packages/keylaunch/files/80chvt-SUID
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /bin/sh
-#
-# Copyright Matthias Hentges <devel@hentges.net> (c) 2006
-# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
-#
-# Filename: chvt-SUID.sh
-# Date: 28-May-06
-
-
-#
-# Sets the SUID bit on chvt to allow changing to the VT from inside X by
-# any user. Since a SUID binary still is a security risk, we chmod only
-# when keylaunch is used and not by default.
-#
-
-for target in /usr/bin/chvt.console-tools
-do
- if test "`ls -l "$target" | awk '{print $1}'|cut -c 2-4`" != "rws"
- then
- echo "Making [$target] SUID root..."
- chmod u+s "$target"
- else
- echo "Ignoring [$target]"
- fi
-done