|
Revision 2763, 1.3 kB
(checked in by dhozac, 3 months ago)
|
Remove the runfile, if it exists.
|
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
#! /bin/bash |
|---|
| 2 |
# $Id$ |
|---|
| 3 |
|
|---|
| 4 |
# Copyright (C) 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> |
|---|
| 5 |
# |
|---|
| 6 |
# This program is free software; you can redistribute it and/or modify |
|---|
| 7 |
# it under the terms of the GNU General Public License as published by |
|---|
| 8 |
# the Free Software Foundation; version 2 of the License. |
|---|
| 9 |
# |
|---|
| 10 |
# This program is distributed in the hope that it will be useful, |
|---|
| 11 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 |
# GNU General Public License for more details. |
|---|
| 14 |
# |
|---|
| 15 |
# You should have received a copy of the GNU General Public License |
|---|
| 16 |
# along with this program; if not, write to the Free Software |
|---|
| 17 |
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|---|
| 18 |
|
|---|
| 19 |
. "$_LIB_VSERVER_BUILD_FUNCTIONS" |
|---|
| 20 |
. "$_LIB_VSERVER_BUILD_FUNCTIONS_PKGMGMT" |
|---|
| 21 |
|
|---|
| 22 |
if test -z "$OPTION_SILENT" ; then |
|---|
| 23 |
read -p "Are you sure you want to delete the vserver $vserver (y/N) " deleteok |
|---|
| 24 |
if [[ ${deleteok} != [Yy] ]]; then |
|---|
| 25 |
exit 2 |
|---|
| 26 |
fi |
|---|
| 27 |
fi |
|---|
| 28 |
|
|---|
| 29 |
isVserverRunning "$VSERVER_DIR" && |
|---|
| 30 |
"${SELF[@]}" $OPTION_SILENT --sync "$vserver" stop |
|---|
| 31 |
|
|---|
| 32 |
base.init |
|---|
| 33 |
pkgmgmt.initVariables |
|---|
| 34 |
$_RM -rf "`$_VSERVER_INFO "$vserver" VDIR 1`" "$VSERVER_DIR" "$PKGCFGDIR" \ |
|---|
| 35 |
"`$_READLINK "$VSERVER_DIR/cache" 2>/dev/null`" \ |
|---|
| 36 |
"`$_READLINK "$VSERVER_DIR/run" 2>/dev/null`" |
|---|