Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / logic / management / commands / backend-remove.py @ b84ed662

History | View | Annotate | Download (3.1 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or without
4
# modification, are permitted provided that the following conditions
5
# are met:
6
#
7
#   1. Redistributions of source code must retain the above copyright
8
#      notice, this list of conditions and the following disclaimer.
9
#
10
#  2. Redistributions in binary form must reproduce the above copyright
11
#     notice, this list of conditions and the following disclaimer in the
12
#     documentation and/or other materials provided with the distribution.
13
#
14
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
15
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
18
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24
# SUCH DAMAGE.
25
#
26
# The views and conclusions contained in the software and documentation are
27
# those of the authors and should not be interpreted as representing official
28
# policies, either expressed or implied, of GRNET S.A.
29
#
30

    
31
from django.core.management.base import BaseCommand, CommandError
32
from synnefo.management.common import get_backend
33
from synnefo.db.models import VirtualMachine, BackendNetwork
34

    
35

    
36
class Command(BaseCommand):
37
    can_import_settings = True
38

    
39
    help = "Remove a backend from the Database. Backend should be set\n" \
40
           "to drained before trying to remove it, in order to avoid the\n" \
41
           "allocation of a new instances in this Backend.\n\n" \
42
           "Removal of a backend will fail if the backend hosts any\n" \
43
           "non-deleted instances."
44

    
45
    output_transaction = True  # The management command runs inside
46
                               # an SQL transaction
47

    
48
    def handle(self, *args, **options):
49
        if len(args) < 1:
50
            raise CommandError("Please provide a backend ID")
51

    
52
        backend = get_backend(args[0])
53

    
54
        self.stdout.write('Trying to remove backend: %s\n' % backend.clustername)
55

    
56
        vms_in_backend = VirtualMachine.objects.filter(backend=backend,
57
                                                       deleted=False)
58

    
59
        if vms_in_backend:
60
            raise CommandError('Backend hosts non-deleted vms. Can not delete')
61

    
62
        networks = BackendNetwork.objects.filter(backend=backend, deleted=False)
63
        networks = [net.network.backend_id for net in networks]
64

    
65
        backend.delete()
66

    
67
        self.stdout.write('Successfully removed backend.\n')
68

    
69
        if networks:
70
            self.stdout.write('Left the following orphans networks in Ganeti:\n')
71
            self.stdout.write('  ' + '\n  * '.join(networks) + '\n')
72
            self.stdout.write('Manually remove them.\n')