|
Revision 1869, 1.2 kB
(checked in by ensc, 4 years ago)
|
LEGACY BREAKAGE FOR 3RD PARTY PATCHES: introduced a more common naming
scheme: global, immutable variables names are now named like '$ABC'
instead of '$ABC'. This happens at much places and will break a lot of
patches therefore.
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
: ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars} |
|---|
| 22 |
test -e "$UTIL_VSERVER_VARS" || { |
|---|
| 23 |
echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2 |
|---|
| 24 |
exit 1 |
|---|
| 25 |
} |
|---|
| 26 |
. "$UTIL_VSERVER_VARS" |
|---|
| 27 |
|
|---|
| 28 |
exec $__SBINDIR/chcontext --silent --ctx 1 pstree "$@" |
|---|