merge with 0.30.213
[util-vserver.git] / scripts / vuserdel
1 #!/bin/bash
2 #
3 # userdel(8) wrapper for vservers
4 #
5 # Copyright (c) 2004  The Trustees of Princeton University (Trustees).
6 #
7 # $Id: vuserdel,v 1.11 2007/06/29 14:13:01 dhozac Exp $
8 #
9
10 : ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars}
11 test -e "$UTIL_VSERVER_VARS" || {
12     echo "Can not find util-vserver installation; aborting..."
13     exit 1
14 }
15 . "$UTIL_VSERVER_VARS"
16
17 usage()
18 {
19     echo "usage: $0 name"
20     exit 1
21 }
22
23 [ -z "$1" ] && usage
24 [ "$1" == "--static" ] && { STATIC=yes; shift; }
25 NAME=$1
26
27 # read config file to get context ID
28 CTX=`cat $__CONFDIR/$NAME/context`
29
30 # don't bother stopping gracefully, just kill all the processes
31 chcontext --silent --secure --ctx $CTX $__LEGACYDIR/vserverkillall
32
33 # unmount any directories in vserver that are mount points
34 for d in `sed -ne "s%^[^ ]* \($__DEFAULT_VSERVERDIR/$NAME/[^ ]*\) .*%\1%p" /proc/mounts`
35 do
36         # use echo -e to turn escaped whitespace back into regular chars
37         # be careful about embedded backquotes here (i think we're safe)
38         dir=`echo -e "$d"`
39         echo "unmounting $dir"
40         umount -l "$dir"
41 done
42
43 # delete user
44 [ -z "$STATIC" ] && userdel -r $NAME
45
46 # remove vserver configuration directory
47 rm -rf /etc/vservers/$NAME
48
49 # remove vserver profile
50 rm -f /var/run/vservers/$NAME.ctx
51
52 # destroy vserver
53 if [ -d $__DEFAULT_VSERVERDIR/$NAME ] ; then
54     TMP=$(mktemp -d "$__DEFAULT_VSERVERDIR/.vtmp/$NAME.XXXXXX")
55     mv "$__DEFAULT_VSERVERDIR/$NAME" "$TMP"
56     rm -rf "$TMP"
57 fi