~ubuntu-branches/ubuntu/quantal/lxc/quantal-201208301614

« back to all changes in this revision

Viewing changes to src/lxc/lxc-destroy.in

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2010-01-10 10:40:21 UTC
  • mto: (1.1.2 upstream) (3.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20100110104021-ff3ukvpu7yzc36hm
ImportĀ upstreamĀ versionĀ 0.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
#
 
4
# lxc: linux Container library
 
5
 
 
6
# Authors:
 
7
# Daniel Lezcano <daniel.lezcano@free.fr>
 
8
 
 
9
# This library is free software; you can redistribute it and/or
 
10
# modify it under the terms of the GNU Lesser General Public
 
11
# License as published by the Free Software Foundation; either
 
12
# version 2.1 of the License, or (at your option) any later version.
 
13
 
 
14
# This library is distributed in the hope that it will be useful,
 
15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
# Lesser General Public License for more details.
 
18
 
 
19
# You should have received a copy of the GNU Lesser General Public
 
20
# License along with this library; if not, write to the Free Software
 
21
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
22
 
 
23
#
 
24
# This script allows to set or remove the capabilities on the lxc tools.
 
25
# When the capabilities are set, a non root user can manage the containers.
 
26
#
 
27
 
 
28
usage() {
 
29
    echo "usage: $0 -n <name>"
 
30
}
 
31
 
 
32
if [ "$(id -u)" != "0" ]; then
 
33
   echo "This command has to be run as root"
 
34
   exit 1
 
35
fi
 
36
 
 
37
shortoptions='n:'
 
38
longoptions='name:'
 
39
lxc_path=@LXCPATH@
 
40
 
 
41
getopt=$(getopt -o $shortoptions --longoptions  $longoptions -- "$@")
 
42
if [ $? != 0 ]; then
 
43
    usage $0
 
44
    exit 1;
 
45
fi
 
46
 
 
47
eval set -- "$getopt"
 
48
 
 
49
while true; do
 
50
        case "$1" in
 
51
            -n|--name)
 
52
                shift
 
53
                lxc_name=$1
 
54
                shift
 
55
                ;;
 
56
            --)
 
57
                shift
 
58
                break;;
 
59
            *)
 
60
                echo $1
 
61
                usage $0
 
62
                exit 1
 
63
                ;;
 
64
        esac
 
65
done
 
66
 
 
67
if [ -z "$lxc_name" ]; then
 
68
    echo "no container name specified"
 
69
    usage $0
 
70
    exit 1
 
71
fi
 
72
 
 
73
if [ ! -d "$lxc_path/$lxc_name" ]; then
 
74
    echo "'$lxc_name' does not exist"
 
75
    exit 1
 
76
fi
 
77
 
 
78
# recursively remove the container to remove old container configuration
 
79
rm -rf --preserve-root $lxc_path/$lxc_name