aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/keylaunch/keylaunch-conf/80chvt-SUID
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/keylaunch/keylaunch-conf/80chvt-SUID')
-rw-r--r--recipes/keylaunch/keylaunch-conf/80chvt-SUID25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/keylaunch/keylaunch-conf/80chvt-SUID b/recipes/keylaunch/keylaunch-conf/80chvt-SUID
new file mode 100644
index 0000000000..e3b4efef5d
--- /dev/null
+++ b/recipes/keylaunch/keylaunch-conf/80chvt-SUID
@@ -0,0 +1,25 @@
+#! /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