|
Revision 2674, 373 bytes
(checked in by dhozac, 10 months ago)
|
Add missing svn:keywords.
|
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
#!/sbin/runscript |
|---|
| 2 |
# Copyright 1999-2005 Gentoo Foundation |
|---|
| 3 |
# Distributed under the terms of the GNU General Public License v2 |
|---|
| 4 |
|
|---|
| 5 |
depend() { |
|---|
| 6 |
need util-vserver vprocunhide |
|---|
| 7 |
} |
|---|
| 8 |
|
|---|
| 9 |
start() { |
|---|
| 10 |
MARK=${SVCNAME#vservers.} /usr/lib/util-vserver/vserver-wrapper start |
|---|
| 11 |
} |
|---|
| 12 |
|
|---|
| 13 |
stop() { |
|---|
| 14 |
MARK=${SVCNAME#vservers.} /usr/lib/util-vserver/vserver-wrapper stop |
|---|
| 15 |
} |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
# vim:ts=4:filetype=gentoo-init-d |
|---|