~serge-hallyn/ubuntu/natty/lxc/lxc-clone

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2009-04-29 17:49:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090429174913-jvahs1ykizqtodje
Tags: upstream-0.6.2
ImportĀ upstreamĀ versionĀ 0.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
# set -ex
 
3
 
 
4
lxcpath=@LXCPATH@
 
5
exec=""
 
6
 
 
7
if [ ! -r $lxcpath ]; then
 
8
    exit 0
 
9
fi
 
10
 
 
11
if [ $# -eq  0 ]; then
 
12
    echo "usage: $0 -n <name>"
 
13
    exit 1
 
14
fi
 
15
 
 
16
for i in $*; do
 
17
    case $i in
 
18
        -n)
 
19
            name=$2; shift 2;;
 
20
        --exec)
 
21
            exec="exec"; shift;;
 
22
    esac
 
23
done
 
24
 
 
25
if [ -z "$exec" ]; then
 
26
    exec @BINDIR@/lxc-unshare -m -- @BINDIR@/lxc-netstat -n $name --exec $*
 
27
fi
 
28
 
 
29
if [ -z "$name" ]; then
 
30
    echo "usage: $0 -n <name>"
 
31
    exit 1
 
32
fi
 
33
 
 
34
if [ ! -d $lxcpath/$name ]; then
 
35
    echo "'$name' does not exists"
 
36
    exit 1
 
37
fi
 
38
 
 
39
if [ ! -r $lxcpath/$name ]; then
 
40
    echo "Can not access '$name': permission denied"
 
41
    exit 1
 
42
fi
 
43
 
 
44
if [ ! -f $lxcpath/$name/init ]; then
 
45
    exit 0
 
46
fi
 
47
 
 
48
initpid=$(cat $lxcpath/$name/init) && \
 
49
    mount --bind /proc/$initpid/net /proc/$$/net && \
 
50
    exec netstat $*