From: Enrico Scholz Date: Thu, 30 Oct 2003 17:27:43 +0000 (+0000) Subject: removed; is obsoleted by ctx-kill X-Git-Tag: VERSION_0_10~1109 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef686145279304e4bbb767f2e4c8854741fd74ff;p=util-vserver.git removed; is obsoleted by ctx-kill git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@336 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/util-vserver/scripts/vkill b/util-vserver/scripts/vkill deleted file mode 100755 index cbf3fb1..0000000 --- a/util-vserver/scripts/vkill +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/perl -w - -# Copyright (C) 2003 Enrico Scholz -# based on vkill by Philip Snyder -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# kill wrapper for vserver. -# Philip Snyder -# 2002/02/06 19:00 PST - - -$PROC = $ARGV[0]; - -# Grab the output from a context query against this process id -open(PH, "/usr/sbin/chcontext --silent --ctx 1 cat /proc/$PROC/status 2>&1 |"); - -# Loop through the output -while () { - - # Searching for a line that looks like this: - # s_context: # - if (/^s_context: ([0-9]+)/) { - - print "Process id $PROC was found in security context $1.\n"; - - # Make sure the process is in a vserver context - if ($1 > 0) { - - # Since we have the context and the process id, we can kill it - print " + Killing... "; - `/usr/sbin/chcontext --ctx $1 kill $PROC`; - print "[done]\n"; - - } else { - - # Not in vserver context, so its a process on the actual server - print " + Killing... "; - `kill $PROC`; - print "[done]\n"; - - } - exit; - } -} - -print "Process id $PROC not found.\n"; -exit