package util-vserver
tags 377690 +patch
thanks
On Thursday 13 July 2006 22:17, Ola Lundqvist wrote:
> > This can be trivially traced to the usage of "exec" in the start/stop
> > actions.
>
> Do not really understand. I can not find any exec statement in the restart
> function... Can you provide me better description on what you have found or
> even better a patch?
Attached.
Regards, David
--
- hallo... wie gehts heute?
- *hust* gut *rotz* *keuch*
- gott sei dank kommunizieren wir über ein septisches medium ;)
-- Matthias Leeb, Uni f. angewandte Kunst, 2005-02-15
--- util-vserver.orig 2006-07-13 23:01:26.000000000 +0200
+++ util-vserver 2006-07-13 23:01:36.000000000 +0200
@@ -113,7 +113,7 @@
# Then start up vservers with $MARK if $AUTO is set to start things
if [ "$AUTO" = "true" ]
then
- exec /usr/lib/util-vserver/vserver-wrapper start;
+ /usr/lib/util-vserver/vserver-wrapper start;
else
echo "Auto starting of Vservers is not enabled in $DEBIANCONFIG"
echo "Please start your vservers manually with 'vserver <vserver-name> start'"
@@ -132,7 +132,7 @@
then
if [ "$AUTO" = "true" ]
then
- exec /usr/lib/util-vserver/vserver-wrapper stop;
+ /usr/lib/util-vserver/vserver-wrapper stop;
else
echo "Auto stopping of Vservers is not enabled in $DEBIANCONFIG"
echo "Please stop your vservers manually with 'vserver <vserver-name> stop'"