Statistics
| Branch: | Tag: | Revision:

root / snf-deploy / fabfile.py @ 1bc6d467

History | View | Annotate | Download (37.7 kB)

1
from __future__ import with_statement
2
from fabric.api import *
3
from fabric.contrib.console import confirm
4
from random import choice
5
from fabric.operations import run, put
6
import re
7
import shutil, os
8
from functools import wraps
9
import imp
10
import ConfigParser
11
import sys
12
import tempfile
13
import ast
14
from snfdeploy.lib import *
15
from snfdeploy import massedit
16

    
17

    
18
def setup_env(confdir="conf", packages="packages",
19
              templates="files", cluster_name="ganeti1", autoconf=False):
20
    print("Loading configuration for synnefo...")
21
    print(" * Using config files under %s..." % confdir)
22
    print(" * Using %s and %s for packages and templates accordingly..." % (packages, templates))
23

    
24
    autoconf = ast.literal_eval(autoconf)
25
    disable_colors = ast.literal_eval(disable_colors)
26
    conf = Conf.configure(confdir=confdir, cluster_name=cluster_name, autoconf=autoconf)
27
    env.env = Env(conf)
28

    
29
    env.local = autoconf
30
    env.password = env.env.password
31
    env.user = env.env.user
32
    env.shell = "/bin/bash -c"
33

    
34
    if disable_colors:
35
        disable_color()
36

    
37
    if env.env.cms.hostname in [env.env.accounts.hostname, env.env.cyclades.hostname, env.env.pithos.hostname]:
38
      env.cms_pass = True
39
    else:
40
      env.cms_pass = False
41

    
42
    if env.env.accounts.hostname in [env.env.cyclades.hostname, env.env.pithos.hostname]:
43
      env.csrf_disable = True
44
    else:
45
      env.csrf_disable = False
46

    
47

    
48
    env.roledefs = {
49
        "nodes": env.env.ips,
50
        "ips": env.env.ips,
51
        "accounts": [env.env.accounts.ip],
52
        "cyclades": [env.env.cyclades.ip],
53
        "pithos": [env.env.pithos.ip],
54
        "cms": [env.env.cms.ip],
55
        "mq": [env.env.mq.ip],
56
        "db": [env.env.db.ip],
57
        "ns": [env.env.ns.ip],
58
        "client": [env.env.client.ip],
59
        "router": [env.env.router.ip],
60
    }
61

    
62
    env.enable_lvm = False
63
    env.enable_drbd = False
64
    if ast.literal_eval(env.env.create_extra_disk) and env.env.extra_disk:
65
        env.enable_lvm = True
66
        env.enable_drbd = True
67

    
68
    env.roledefs.update({
69
        "ganeti": env.env.cluster_ips,
70
        "master": [env.env.master.ip],
71
    })
72

    
73

    
74
def install_package(package):
75
    debug(env.host, " * Installing package %s..." % package)
76
    APT_GET = "export DEBIAN_FRONTEND=noninteractive ;apt-get install -y --force-yes "
77

    
78
    if ast.literal_eval(env.env.use_local_packages):
79
        with settings(warn_only=True):
80
            deb = local("ls %s/%s*deb" % (env.env.packages, package))
81
            if deb:
82
                debug(env.host, " * Package %s found in %s..." % (package, env.env.packages))
83
                put(deb, "/tmp/")
84
                try_run("dpkg -i /tmp/%s*deb || " % package + APT_GET + "-f")
85
                try_run("rm /tmp/%s*deb" % package)
86
                return
87

    
88
    info = getattr(env.env, package)
89
    if info in ["stable", "squeeze-backports", "testing", "unstable"]:
90
        APT_GET += " -t %s %s " % (info, package)
91
    elif info:
92
        APT_GET += " %s=%s " % (package, info)
93
    else:
94
        APT_GET += package
95

    
96
    try_run(APT_GET)
97

    
98
    return
99

    
100

    
101
@roles("ns")
102
def update_ns_for_ganeti():
103
    debug(env.host, "Updating name server entries for backend %s..." % env.env.cluster.fqdn)
104
    update_arecord(env.env.cluster)
105
    update_ptrrecord(env.env.cluster)
106
    try_run("/etc/init.d/bind9 restart")
107

    
108

    
109
@roles("ns")
110
def update_ns_for_node(node):
111
    info = env.env.nodes_info.get(node)
112
    update_arecord(info)
113
    update_ptrrecord(info)
114
    try_run("/etc/init.d/bind9 restart")
115

    
116

    
117
@roles("ns")
118
def update_arecord(host):
119
    filename = "/etc/bind/zones/" + env.env.domain
120
    cmd = """
121
    echo '{0}' >> {1}
122
    """.format(host.arecord, filename)
123
    try_run(cmd)
124

    
125

    
126
@roles("ns")
127
def update_cnamerecord(host):
128
    filename = "/etc/bind/zones/" + env.env.domain
129
    cmd = """
130
    echo '{0}' >> {1}
131
    """.format(host.cnamerecord, filename)
132
    try_run(cmd)
133

    
134

    
135
@roles("ns")
136
def update_ptrrecord(host):
137
    filename = "/etc/bind/rev/synnefo.in-addr.arpa.zone"
138
    cmd = """
139
    echo '{0}' >> {1}
140
    """.format(host.ptrrecord, filename)
141
    try_run(cmd)
142

    
143
@roles("nodes")
144
def apt_get_update():
145
    debug(env.host, "apt-get update....")
146
    try_run("apt-get update")
147

    
148
@roles("ns")
149
def setup_ns():
150
    debug(env.host, "Setting up name server..")
151
    #WARNING: this should be remove after we are done
152
    # because gevent does pick randomly nameservers and google does
153
    # not know our setup!!!!!
154
    apt_get_update()
155
    install_package("bind9")
156
    tmpl = "/etc/bind/named.conf.local"
157
    replace = {
158
      "domain": env.env.domain,
159
      }
160
    custom = customize_settings_from_tmpl(tmpl, replace)
161
    put(custom, tmpl)
162

    
163
    try_run("mkdir -p /etc/bind/zones")
164
    tmpl = "/etc/bind/zones/example.com"
165
    replace = {
166
      "domain": env.env.domain,
167
      "ns_node_ip": env.env.ns.ip,
168
      }
169
    custom = customize_settings_from_tmpl(tmpl, replace)
170
    remote = "/etc/bind/zones/" + env.env.domain
171
    put(custom, remote)
172

    
173
    try_run("mkdir -p /etc/bind/rev")
174
    tmpl = "/etc/bind/rev/synnefo.in-addr.arpa.zone"
175
    replace = {
176
      "domain": env.env.domain,
177
      }
178
    custom = customize_settings_from_tmpl(tmpl, replace)
179
    put(custom, tmpl)
180

    
181
    tmpl = "/etc/bind/named.conf.options"
182
    replace = {
183
      "NODE_IPS": ";".join(env.env.ips),
184
      }
185
    custom = customize_settings_from_tmpl(tmpl, replace)
186
    put(custom, tmpl, mode=0644)
187

    
188
    for role, info in env.env.roles.iteritems():
189
        if role == "ns":
190
            continue
191
        update_cnamerecord(info)
192
    for node, info in env.env.nodes_info.iteritems():
193
        update_arecord(info)
194
        update_ptrrecord(info)
195

    
196
    try_run("/etc/init.d/bind9 restart")
197

    
198

    
199
@roles("nodes")
200
def check_dhcp():
201
    debug(env.host, "Checking IPs for synnefo..")
202
    for n, info in env.env.nodes_info.iteritems():
203
        try_run("ping -c 1 " + info.ip)
204

    
205
@roles("nodes")
206
def check_dns():
207
    debug(env.host, "Checking fqdns for synnefo..")
208
    for n, info in env.env.nodes_info.iteritems():
209
        try_run("ping -c 1 " + info.fqdn)
210

    
211
    for n, info in env.env.roles.iteritems():
212
        try_run("ping -c 1 " + info.fqdn)
213

    
214
@roles("nodes")
215
def check_connectivity():
216
    debug(env.host, "Checking internet connectivity..")
217
    try_run("ping -c 1 www.google.com")
218

    
219

    
220
@roles("nodes")
221
def check_ssh():
222
    debug(env.host, "Checking password-less ssh..")
223
    for n, info in env.env.nodes_info.iteritems():
224
        try_run("ssh " + info.fqdn + "  date")
225

    
226

    
227
@roles("ips")
228
def add_keys():
229
    debug(env.host, "Adding rsa/dsa keys..")
230
    try_run("mkdir -p /root/.ssh")
231
    cmd = """
232
for f in $(ls /root/.ssh/*); do
233
  cp $f $f.bak
234
done
235
    """
236
    try_run(cmd)
237
    files = ["authorized_keys", "id_dsa", "id_dsa.pub",
238
             "id_rsa", "id_rsa.pub"]
239
    for f in files:
240
      tmpl = "/root/.ssh/" + f
241
      replace = {}
242
      custom = customize_settings_from_tmpl(tmpl, replace)
243
      put(custom, tmpl)
244

    
245
    cmd = """
246
if [ -e /root/.ssh/authorized_keys.bak ]; then
247
  cat /root/.ssh/authorized_keys.bak >> /root/.ssh/authorized_keys
248
fi
249
    """
250
    debug(env.host, "Updating exising authorized keys..")
251
    try_run(cmd)
252

    
253
@roles("ips")
254
def setup_resolv_conf():
255
    debug(env.host, "Tweak /etc/resolv.conf...")
256
    try_run("/etc/init.d/network-manager stop")
257
    tmpl = "/etc/dhcp/dhclient-enter-hooks.d/nodnsupdate"
258
    replace = {}
259
    custom = customize_settings_from_tmpl(tmpl, replace)
260
    put(custom, tmpl, mode=0644)
261
    try_run("cp /etc/resolv.conf /etc/resolv.conf.bak")
262
    tmpl = "/etc/resolv.conf"
263
    replace = {
264
      "domain": env.env.domain,
265
      "ns_node_ip": env.env.ns.ip,
266
      }
267
    custom = customize_settings_from_tmpl(tmpl, replace)
268
    put(custom, tmpl)
269
    try_run("chattr +i /etc/resolv.conf")
270

    
271

    
272
@roles("ips")
273
def setup_hosts():
274
    debug(env.host, "Tweaking /etc/hosts and ssh_config files...")
275
    try_run("echo StrictHostKeyChecking no >> /etc/ssh/ssh_config")
276
    cmd = " sed -i 's/^127.*/127.0.0.1 localhost/g' /etc/hosts "
277
    try_run(cmd)
278

    
279

    
280
def try_run(cmd):
281
    try:
282
      if env.local:
283
        return local(cmd, capture=True)
284
      else:
285
        return run(cmd)
286
    except:
287
      debug(env.host, "WARNING: command failed. Continuing anyway...")
288

    
289
def create_bridges():
290
    debug(env.host, " * Creating bridges...")
291
    install_package("bridge-utils")
292
    cmd = """
293
    brctl addbr {0} ; ip link set {0} up
294
    """.format(env.env.common_bridge)
295
    try_run(cmd)
296

    
297

    
298
def connect_bridges():
299
    debug(env.host, " * Connecting bridges...")
300
    cmd = """
301
    brctl addif {0} {1}
302
    """.format(env.env.common_bridge, env.env.public_iface)
303
    #try_run(cmd)
304

    
305

    
306
@roles("ganeti")
307
def setup_net_infra():
308
    debug(env.host, "Setup networking infrastracture..")
309
    create_bridges()
310
    connect_bridges()
311

    
312

    
313
@roles("ganeti")
314
def setup_lvm():
315
    debug(env.host, "create volume group %s for ganeti.." % env.env.vg)
316
    if env.enable_lvm:
317
        install_package("lvm2")
318
        cmd = """
319
        pvcreate {0}
320
        vgcreate {1} {0}
321
        """.format(env.env.extra_disk, env.env.vg)
322
        try_run(cmd)
323

    
324

    
325
def customize_settings_from_tmpl(tmpl, replace):
326
    debug(env.host, " * Customizing template %s..." % tmpl)
327
    local = env.env.templates + tmpl
328
    _, custom = tempfile.mkstemp()
329
    shutil.copyfile(local, custom)
330
    for k, v in replace.iteritems():
331
        regex = "re.sub('%{0}%', '{1}', line)".format(k.upper(), v)
332
        massedit.edit_files([custom], [regex], dry_run=False)
333

    
334
    return custom
335

    
336

    
337
@roles("nodes")
338
def setup_apt():
339
    debug(env.host, "Setting up apt sources...")
340
    install_package("curl")
341
    cmd = """
342
    echo 'APT::Install-Suggests "false";' >> /etc/apt/apt.conf
343
    curl -k https://dev.grnet.gr/files/apt-grnetdev.pub | apt-key add -
344
    """
345
    try_run(cmd)
346
    tmpl = "/etc/apt/sources.list.d/okeanos.list"
347
    replace = {}
348
    custom = customize_settings_from_tmpl(tmpl, replace)
349
    put(custom, tmpl)
350
    apt_get_update()
351

    
352

    
353
@roles("cyclades", "cms", "pithos", "accounts")
354
def restart_services():
355
    debug(env.host, " * Restarting apache2 and gunicorn...")
356
    try_run("/etc/init.d/gunicorn restart")
357
    try_run("/etc/init.d/apache2 restart")
358

    
359

    
360
def setup_gunicorn():
361
    debug(env.host, " * Setting up gunicorn...")
362
    install_package("gunicorn")
363
    tmpl = "/etc/gunicorn.d/synnefo"
364
    replace = {}
365
    custom = customize_settings_from_tmpl(tmpl, replace)
366
    put(custom, tmpl, mode=0644)
367
    try_run("/etc/init.d/gunicorn restart")
368

    
369

    
370
def setup_apache():
371
    debug(env.host, " * Setting up apache2...")
372
    host_info = env.env.ips_info[env.host]
373
    install_package("apache2")
374
    tmpl = "/etc/apache2/sites-available/synnefo"
375
    replace = {
376
        "HOST": host_info.fqdn,
377
    }
378
    custom = customize_settings_from_tmpl(tmpl, replace)
379
    put(custom, tmpl)
380
    tmpl = "/etc/apache2/sites-available/synnefo-ssl"
381
    custom = customize_settings_from_tmpl(tmpl, replace)
382
    put(custom, tmpl)
383
    cmd = """
384
    a2enmod ssl
385
    a2enmod rewrite
386
    a2dissite default
387
    a2ensite synnefo
388
    a2ensite synnefo-ssl
389
    a2enmod headers
390
    a2enmod proxy_http
391
    a2dismod autoindex
392
    """
393
    try_run(cmd)
394
    try_run("/etc/init.d/apache2 restart")
395

    
396

    
397
@roles("mq")
398
def setup_mq():
399
    debug(env.host, "Setting up RabbitMQ...")
400
    install_package("rabbitmq-server")
401
    cmd = """
402
    rabbitmqctl add_user {0} {1}
403
    rabbitmqctl set_permissions {0} ".*" ".*" ".*"
404
    rabbitmqctl delete_user guest
405
    rabbitmqctl set_user_tags {0} administrator
406
    """.format(env.env.synnefo_user, env.env.synnefo_rabbitmq_passwd)
407
    try_run(cmd)
408
    try_run("/etc/init.d/rabbitmq-server restart")
409

    
410

    
411
@roles("db")
412
def allow_access_in_db(ip):
413
    cmd = """
414
    echo host all all {0}/32 md5 >> /etc/postgresql/8.4/main/pg_hba.conf
415
    """.format(ip)
416
    try_run(cmd)
417
    try_run("/etc/init.d/postgresql restart")
418

    
419
@roles("db")
420
def setup_db():
421
    debug(env.host, "Setting up DataBase server...")
422
    install_package("postgresql")
423

    
424
    tmpl = "/tmp/db-init.psql"
425
    replace = {
426
        "synnefo_user": env.env.synnefo_user,
427
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
428
        }
429
    custom = customize_settings_from_tmpl(tmpl, replace)
430
    put(custom, tmpl)
431
    cmd = 'su - postgres -c "psql -w -f %s" ' % tmpl
432
    try_run(cmd)
433
    cmd = """
434
    echo "listen_addresses = '*'" >> /etc/postgresql/8.4/main/postgresql.conf
435
    """
436
    try_run(cmd)
437

    
438
    try_run("/etc/init.d/postgresql restart")
439

    
440

    
441
@roles("db")
442
def destroy_db():
443
    try_run("""su - postgres -c ' psql -w -c "drop database snf_apps" '""")
444
    try_run("""su - postgres -c ' psql -w -c "drop database snf_pithos" '""")
445

    
446

    
447
def setup_webproject():
448
    debug(env.host, " * Setting up snf-webproject...")
449
    with settings(hide("everything")):
450
        try_run("ping -c1 " + env.env.db.ip)
451
    setup_common()
452
    install_package("snf-webproject")
453
    install_package("python-psycopg2")
454
    install_package("python-gevent")
455
    tmpl = "/etc/synnefo/webproject.conf"
456
    replace = {
457
        "synnefo_user": env.env.synnefo_user,
458
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
459
        "db_node": env.env.db.ip,
460
        "domain": env.env.domain,
461
    }
462
    custom = customize_settings_from_tmpl(tmpl, replace)
463
    put(custom, tmpl, mode=0644)
464
    with settings(host_string=env.env.db.hostname):
465
        host_info = env.env.ips_info[env.host]
466
        allow_access_in_db(host_info.ip)
467
    try_run("/etc/init.d/gunicorn restart")
468

    
469

    
470
def setup_common():
471
    debug(env.host, " * Setting up snf-common...")
472
    host_info = env.env.ips_info[env.host]
473
    install_package("python-objpool")
474
    install_package("snf-common")
475
    install_package("python-astakosclient")
476
    install_package("snf-django-lib")
477
    install_package("snf-branding")
478
    tmpl = "/etc/synnefo/common.conf"
479
    replace = {
480
        #FIXME:
481
        "EMAIL_SUBJECT_PREFIX": env.host,
482
        "domain": env.env.domain,
483
        "HOST": host_info.fqdn,
484
    }
485
    custom = customize_settings_from_tmpl(tmpl, replace)
486
    put(custom, tmpl, mode=0644)
487
    try_run("/etc/init.d/gunicorn restart")
488

    
489
@roles("accounts")
490
def astakos_loaddata():
491
    debug(env.host, " * Loading initial data to astakos...")
492
    cmd = """
493
    snf-manage loaddata groups
494
    """
495
    try_run(cmd)
496

    
497

    
498
@roles("accounts")
499
def astakos_register_services():
500
    debug(env.host, " * Register services in astakos...")
501
    cmd = """
502
    snf-manage component-add "home" https://{0} home-icon.png
503
    snf-manage component-add "cyclades" https://{1}/cyclades/ui/
504
    snf-manage component-add "pithos" https://{2}/pithos/ui/
505
    snf-manage component-add "astakos" https://{3}/astakos/ui/
506
    """.format(env.env.cms.fqdn, env.env.cyclades.fqdn, env.env.pithos.fqdn, env.env.accounts.fqdn)
507
    try_run(cmd)
508
    import_service("astakos")
509
    import_service("pithos")
510
    import_service("cyclades")
511
    tmpl = "/tmp/resources.json"
512
    replace = {}
513
    custom = customize_settings_from_tmpl(tmpl, replace)
514
    put(custom, tmpl)
515
    try_run("snf-manage resource-import --json %s" % tmpl)
516
    cmd = """
517
    snf-manage resource-modify --limit 40G pithos.diskspace
518
    snf-manage resource-modify --limit 2 astakos.pending_app
519
    snf-manage resource-modify --limit 4 cyclades.vm
520
    snf-manage resource-modify --limit 40G cyclades.disk
521
    snf-manage resource-modify --limit 8G cyclades.ram
522
    snf-manage resource-modify --limit 16 cyclades.cpu
523
    snf-manage resource-modify --limit 4 cyclades.network.private
524
    """
525
    try_run(cmd)
526

    
527

    
528
@roles("accounts")
529
def add_user():
530
    debug(env.host, " * adding user %s to astakos..." % env.env.user_email)
531
    email=env.env.user_email
532
    name=env.env.user_name
533
    lastname=env.env.user_lastname
534
    passwd=env.env.user_passwd
535
    cmd = """
536
    snf-manage user-add {0} {1} {2}
537
    """.format(email, name, lastname)
538
    try_run(cmd)
539
    with settings(host_string=env.env.db.hostname):
540
        uid, user_auth_token, user_uuid = get_auth_token_from_db(email)
541
    cmd = """
542
    snf-manage user-modify --password {0} {1}
543
    """.format(passwd, uid)
544
    try_run(cmd)
545

    
546

    
547
@roles("accounts")
548
def activate_user(user_email=None):
549
    if not user_email:
550
      user_email = env.env.user_email
551
    debug(env.host, " * Activate user %s..." % user_email)
552
    with settings(host_string=env.env.db.hostname):
553
        uid, user_auth_token, user_uuid = get_auth_token_from_db(user_email)
554

    
555
    cmd = """
556
    snf-manage user-modify --verify {0}
557
    snf-manage user-modify --accept {0}
558
    """.format(uid)
559
    try_run(cmd)
560

    
561
@roles("accounts")
562
def setup_astakos():
563
    debug(env.host, "Setting up snf-astakos-app...")
564
    setup_gunicorn()
565
    setup_apache()
566
    setup_webproject()
567
    install_package("python-django-south")
568
    install_package("snf-astakos-app")
569
    install_package("kamaki")
570

    
571
    tmpl = "/etc/synnefo/astakos.conf"
572
    replace = {
573
      "ACCOUNTS": env.env.accounts.fqdn,
574
      "domain": env.env.domain,
575
      "CYCLADES": env.env.cyclades.fqdn,
576
      "PITHOS": env.env.pithos.fqdn,
577
    }
578
    custom = customize_settings_from_tmpl(tmpl, replace)
579
    put(custom, tmpl, mode=0644)
580
    if env.csrf_disable:
581
      cmd = """
582
cat <<EOF >> /etc/synnefo/astakos.conf
583
try:
584
  MIDDLEWARE_CLASSES.remove('django.middleware.csrf.CsrfViewMiddleware')
585
except:
586
  pass
587
EOF
588
"""
589
      try_run(cmd)
590

    
591
    try_run("/etc/init.d/gunicorn restart")
592

    
593
    cmd = """
594
    snf-manage syncdb --noinput
595
    snf-manage migrate im --delete-ghost-migrations
596
    snf-manage migrate quotaholder_app
597
    """
598
    try_run(cmd)
599

    
600
def import_service(service):
601
    tmpl = "/tmp/%s.json" % service
602
    replace = {
603
      "DOMAIN": env.env.domain,
604
      }
605
    custom = customize_settings_from_tmpl(tmpl, replace)
606
    put(custom, tmpl)
607
    try_run("snf-manage service-import --json %s" % tmpl)
608

    
609
@roles("accounts")
610
def get_service_details(service="pithos"):
611
    debug(env.host, " * Getting registered details for %s service..." % service)
612
    result = try_run("snf-manage component-list")
613
    r = re.compile(r".*%s.*" % service, re.M)
614
    service_id, _, _, service_token = r.search(result).group().split()
615
    # print("%s: %s %s" % (service, service_id, service_token))
616
    return (service_id, service_token)
617

    
618

    
619
@roles("db")
620
def get_auth_token_from_db(user_email=None):
621
    if not user_email:
622
        user_email=env.env.user_email
623
    debug(env.host, " * Getting authentication token and uuid for user %s..." % user_email)
624
    cmd = """
625
    echo "select id, auth_token, uuid, email from auth_user, im_astakosuser where auth_user.id = im_astakosuser.user_ptr_id and auth_user.email = '{0}';" > /tmp/psqlcmd
626
    su - postgres -c  "psql -w -d snf_apps -f /tmp/psqlcmd"
627
    """.format(user_email)
628

    
629
    result = try_run(cmd)
630
    r = re.compile(r"(\d+)[ |]*(\S+)[ |]*(\S+)[ |]*" + user_email, re.M)
631
    match = r.search(result)
632
    uid, user_auth_token, user_uuid = match.groups()
633
    # print("%s: %s %s %s" % ( user_email, uid, user_auth_token, user_uuid))
634

    
635
    return (uid, user_auth_token, user_uuid)
636

    
637

    
638
@roles("cms")
639
def cms_loaddata():
640
    debug(env.host, " * Loading cms initial data...")
641
    if env.cms_pass:
642
      debug(env.host, "Aborting. Prerequisites not met.")
643
      return
644
    tmpl = "/tmp/sites.json"
645
    replace = {}
646
    custom = customize_settings_from_tmpl(tmpl, replace)
647
    put(custom, tmpl)
648

    
649
    tmpl = "/tmp/page.json"
650
    replace = {}
651
    custom = customize_settings_from_tmpl(tmpl, replace)
652
    put(custom, tmpl)
653

    
654
    cmd = """
655
    snf-manage loaddata /tmp/sites.json
656
    snf-manage loaddata /tmp/page.json
657
    snf-manage createsuperuser --username=admin --email=admin@{0} --noinput
658
    """.format(env.env.domain)
659
    try_run(cmd)
660

    
661

    
662
@roles("cms")
663
def setup_cms():
664
    debug(env.host, "Setting up cms...")
665
    if env.cms_pass:
666
      debug(env.host, "Aborting. Prerequisites not met.")
667
      return
668
    with settings(hide("everything")):
669
        try_run("ping -c1 accounts." + env.env.domain)
670
    setup_gunicorn()
671
    setup_apache()
672
    setup_webproject()
673
    install_package("snf-cloudcms")
674

    
675
    tmpl = "/etc/synnefo/cms.conf"
676
    replace = {
677
        "ACCOUNTS": env.env.accounts.fqdn,
678
        }
679
    custom = customize_settings_from_tmpl(tmpl, replace)
680
    put(custom, tmpl, mode=0644)
681
    try_run("/etc/init.d/gunicorn restart")
682

    
683

    
684
    cmd = """
685
    snf-manage syncdb
686
    snf-manage migrate --delete-ghost-migrations
687
    """.format(env.env.domain)
688
    try_run(cmd)
689

    
690

    
691
def setup_nfs_dirs():
692
    debug(env.host, " * Creating NFS mount point for pithos and ganeti...")
693
    cmd = """
694
    mkdir -p {0}
695
    cd {0}
696
    mkdir -p data
697
    chown www-data:www-data data
698
    chmod g+ws data
699
    mkdir -p /srv/okeanos
700
    """.format(env.env.pithos_dir)
701
    try_run(cmd)
702

    
703

    
704
@roles("nodes")
705
def setup_nfs_clients():
706
    if env.host == env.env.pithos.hostname:
707
      return
708

    
709
    debug(env.host, " * Mounting pithos NFS mount point...")
710
    with settings(hide("everything")):
711
        try_run("ping -c1 " + env.env.pithos.hostname)
712
    install_package("nfs-common")
713
    for d in [env.env.pithos_dir, "/srv/okeanos"]:
714
      try_run("mkdir -p " + d)
715
      cmd = """
716
      echo "{0}:/{1} {2}  nfs4 defaults,rw,noatime,nodiratime,intr,rsize=1048576,wsize=1048576,noacl" >> /etc/fstab
717
      """.format(env.env.pithos.hostname, os.path.basename(d), d)
718
      try_run(cmd)
719
      try_run("mount " + d)
720

    
721

    
722
@roles("pithos")
723
def setup_nfs_server():
724
    debug(env.host, " * Setting up NFS server for pithos...")
725
    setup_nfs_dirs()
726
    install_package("nfs-kernel-server")
727
    tmpl = "/etc/exports"
728
    replace = {
729
      "pithos_dir": env.env.pithos_dir,
730
      "srv": os.path.dirname(env.env.pithos_dir),
731
      "subnet": env.env.subnet
732
      }
733
    custom = customize_settings_from_tmpl(tmpl, replace)
734
    put(custom, tmpl)
735
    try_run("/etc/init.d/nfs-kernel-server restart")
736

    
737

    
738
@roles("pithos")
739
def setup_pithos():
740
    debug(env.host, "Setting up snf-pithos-app...")
741
    with settings(hide("everything")):
742
        try_run("ping -c1 accounts." + env.env.domain)
743
        try_run("ping -c1 " + env.env.db.ip)
744
    setup_gunicorn()
745
    setup_apache()
746
    setup_webproject()
747

    
748
    with settings(host_string=env.env.accounts.hostname):
749
        service_id, service_token = get_service_details("pithos")
750

    
751
    install_package("kamaki")
752
    install_package("snf-pithos-backend")
753
    install_package("snf-pithos-app")
754
    tmpl = "/etc/synnefo/pithos.conf"
755
    replace = {
756
        "ACCOUNTS": env.env.accounts.fqdn,
757
        "PITHOS": env.env.pithos.fqdn,
758
        "db_node": env.env.db.ip,
759
        "synnefo_user": env.env.synnefo_user,
760
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
761
        "pithos_dir": env.env.pithos_dir,
762
        "PITHOS_SERVICE_TOKEN": service_token,
763
        "proxy": env.env.pithos.hostname == env.env.accounts.hostname
764
        }
765
    custom = customize_settings_from_tmpl(tmpl, replace)
766
    put(custom, tmpl, mode=0644)
767
    try_run("/etc/init.d/gunicorn restart")
768

    
769
    install_package("snf-pithos-webclient")
770
    tmpl = "/etc/synnefo/webclient.conf"
771
    replace = {
772
        "ACCOUNTS": env.env.accounts.fqdn,
773
        "PITHOS_UI_CLOUDBAR_ACTIVE_SERVICE": service_id,
774
        }
775
    custom = customize_settings_from_tmpl(tmpl, replace)
776
    put(custom, tmpl, mode=0644)
777

    
778
    #TOFIX: this is needed in order webclient not to serve /ui url
779
    #       but only /pithos/ui
780
    if env.env.pithos.hostname == env.env.cyclades.hostname:
781
      tmpl = "/usr/share/pyshared/pithos_webclient/synnefo_settings.py"
782
      replace = {}
783
      custom = customize_settings_from_tmpl(tmpl, replace)
784
      put(custom, tmpl, mode=0644)
785

    
786
    try_run("/etc/init.d/gunicorn restart")
787
    #TOFIX: the previous command lets pithos-backend create blocks and maps
788
    #       with root owner
789
    try_run("chown -R www-data:www-data %s/data " % env.env.pithos_dir)
790
    #try_run("pithos-migrate stamp 4c8ccdc58192")
791
    #try_run("pithos-migrate upgrade head")
792

    
793

    
794
def add_wheezy():
795
    tmpl = "/etc/apt/sources.list.d/wheezy.list"
796
    replace = {}
797
    custom = customize_settings_from_tmpl(tmpl, replace)
798
    put(custom, tmpl)
799
    apt_get_update()
800

    
801

    
802
def remove_wheezy():
803
    try_run("rm -f /etc/apt/sources.list.d/wheezy.list")
804
    apt_get_update()
805

    
806

    
807
@roles("ganeti")
808
def setup_ganeti():
809
    debug(env.host, "Setting up snf-ganeti...")
810
    node_info = env.env.ips_info[env.host]
811
    with settings(hide("everything")):
812
        #if env.enable_lvm:
813
        #    try_run("vgs " + env.env.vg)
814
        try_run("getent hosts " + env.env.cluster.fqdn)
815
        try_run("getent hosts %s | grep -v ^127" % env.host)
816
        try_run("hostname -f | grep " + node_info.fqdn)
817
        #try_run("ip link show " + env.env.common_bridge)
818
        #try_run("ip link show " + env.env.common_bridge)
819
        #try_run("apt-get update")
820
    install_package("qemu-kvm")
821
    install_package("python-bitarray")
822
    add_wheezy()
823
    install_package("ganeti-htools")
824
    remove_wheezy()
825
    install_package("snf-ganeti")
826
    try_run("mkdir -p /srv/ganeti/file-storage/")
827
    cmd = """
828
cat <<EOF > /etc/ganeti/file-storage-paths
829
/srv/ganeti/file-storage
830
/srv/ganeti/shared-file-storage
831
EOF
832
"""
833
    try_run(cmd)
834

    
835

    
836
@roles("master")
837
def add_rapi_user():
838
    debug(env.host, " * Adding RAPI user to Ganeti backend...")
839
    cmd = """
840
    echo -n "{0}:Ganeti Remote API:{1}" | openssl md5
841
    """.format(env.env.synnefo_user, env.env.synnefo_rapi_passwd)
842
    result = try_run(cmd)
843
    cmd = """
844
    echo "{0} {1}{2} write" >> /var/lib/ganeti/rapi/users
845
    """.format(env.env.synnefo_user, '{ha1}',result)
846
    try_run(cmd)
847
    try_run("/etc/init.d/ganeti restart")
848

    
849
@roles("master")
850
def add_nodes():
851
    nodes = env.env.cluster_nodes.split(",")
852
    nodes.remove(env.env.master_node)
853
    debug(env.host, " * Adding nodes to Ganeti backend...")
854
    for n in nodes:
855
        add_node(n)
856

    
857
@roles("master")
858
def add_node(node):
859
    node_info = env.env.nodes_info[node]
860
    debug(env.host, " * Adding node %s to Ganeti backend..." % node_info.fqdn)
861
    cmd = "gnt-node add --no-ssh-key-check --master-capable=yes --vm-capable=yes " + node_info.fqdn
862
    try_run(cmd)
863

    
864
@roles("ganeti")
865
def enable_drbd():
866
    if env.enable_drbd:
867
        debug(env.host, " * Enabling DRBD...")
868
        try_run("modprobe drbd minor_count=255 usermode_helper=/bin/true")
869
        try_run("echo drbd minor_count=255 usermode_helper=/bin/true >> /etc/modules")
870

    
871
@roles("master")
872
def setup_drbd_dparams():
873
    if env.enable_drbd:
874
        debug(env.host, " * Twicking drbd related disk parameters in Ganeti...")
875
        cmd = """
876
        gnt-cluster modify --disk-parameters=drbd:metavg={0}
877
        gnt-group modify --disk-parameters=drbd:metavg={0} default
878
        """.format(env.env.vg)
879
        try_run(cmd)
880

    
881
@roles("master")
882
def enable_lvm():
883
    if env.enable_lvm:
884
        debug(env.host, " * Enabling LVM...")
885
        cmd = """
886
        gnt-cluster modify --vg-name={0}
887
        """.format(env.env.vg)
888
        try_run(cmd)
889
    else:
890
        debug(env.host, " * Disabling LVM...")
891
        try_run("gnt-cluster modify --no-lvm-storage")
892

    
893
@roles("master")
894
def destroy_cluster():
895
    debug(env.host, " * Destroying Ganeti cluster...")
896
    #TODO: remove instances first
897
    allnodes = env.env.cluster_hostnames[:]
898
    allnodes.remove(env.host)
899
    for n in allnodes:
900
      host_info = env.env.ips_info[host]
901
      debug(env.host, " * Removing node %s..." % n)
902
      cmd = "gnt-node remove  " + host_info.fqdn
903
      try_run(cmd)
904
    try_run("gnt-cluster destroy --yes-do-it")
905

    
906

    
907
@roles("master")
908
def init_cluster():
909
    debug(env.host, " * Initializing Ganeti backend...")
910
    # extra = ""
911
    # if env.enable_lvm:
912
    #     extra += " --vg-name={0} ".format(env.env.vg)
913
    # else:
914
    #     extra += " --no-lvm-storage "
915
    # if not env.enable_drbd:
916
    #     extra += " --no-drbd-storage "
917
    extra = " --no-lvm-storage --no-drbd-storage "
918
    cmd = """
919
    gnt-cluster init --enabled-hypervisors=kvm \
920
                     {0} \
921
                     --nic-parameters link={1},mode=bridged \
922
                     --master-netdev {2} \
923
                     --default-iallocator hail \
924
                     --hypervisor-parameters kvm:kernel_path=,vnc_bind_address=0.0.0.0 \
925
                     --no-ssh-init --no-etc-hosts \
926
                    {3}
927

928
    """.format(extra, env.env.common_bridge,
929
               env.env.cluster_netdev, env.env.cluster.fqdn)
930
    try_run(cmd)
931

    
932

    
933
@roles("ganeti")
934
def debootstrap():
935
    install_package("ganeti-instance-debootstrap")
936

    
937

    
938
@roles("ganeti")
939
def setup_image_host():
940
    debug(env.host, "Setting up snf-image...")
941
    install_package("snf-pithos-backend")
942
    install_package("snf-image")
943
    try_run("mkdir -p /srv/okeanos")
944
    tmpl = "/etc/default/snf-image"
945
    replace = {
946
        "synnefo_user": env.env.synnefo_user,
947
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
948
        "pithos_dir": env.env.pithos_dir,
949
        "db_node": env.env.db.ip,
950
    }
951
    custom = customize_settings_from_tmpl(tmpl, replace)
952
    put(custom, tmpl)
953

    
954

    
955
@roles("ganeti")
956
def setup_image_helper():
957
    debug(env.host, " * Updating helper image...")
958
    cmd = """
959
    snf-image-update-helper -y
960
    """
961
    try_run(cmd)
962

    
963

    
964
@roles("ganeti")
965
def setup_gtools():
966
    debug(env.host, " * Setting up snf-cyclades-gtools...")
967
    with settings(hide("everything")):
968
        try_run("ping -c1 " + env.env.mq.ip)
969
    setup_common()
970
    install_package("snf-cyclades-gtools")
971
    tmpl = "/etc/synnefo/gtools.conf"
972
    replace = {
973
        "synnefo_user": env.env.synnefo_user,
974
        "synnefo_rabbitmq_passwd": env.env.synnefo_rabbitmq_passwd,
975
        "mq_node": env.env.mq.ip,
976
    }
977
    custom = customize_settings_from_tmpl(tmpl, replace)
978
    put(custom, tmpl)
979

    
980
    cmd = """
981
    sed -i 's/false/true/' /etc/default/snf-ganeti-eventd
982
    /etc/init.d/snf-ganeti-eventd start
983
    """
984
    try_run(cmd)
985

    
986

    
987
@roles("ganeti")
988
def setup_iptables():
989
    debug(env.host, " * Setting up iptables to mangle DHCP requests...")
990
    cmd = """
991
    iptables -t mangle -A PREROUTING -i br+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
992
    iptables -t mangle -A PREROUTING -i tap+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
993
    iptables -t mangle -A PREROUTING -i prv+ -p udp -m udp --dport 67 -j NFQUEUE --queue-num 42
994

995
    ip6tables -t mangle -A PREROUTING -i br+ -p ipv6-icmp -m icmp6 --icmpv6-type 133 -j NFQUEUE --queue-num 43
996
    ip6tables -t mangle -A PREROUTING -i br+ -p ipv6-icmp -m icmp6 --icmpv6-type 135 -j NFQUEUE --queue-num 44
997
    """
998
    try_run(cmd)
999

    
1000
@roles("ganeti")
1001
def setup_network():
1002
    debug(env.host, "Setting up networking for Ganeti instances (nfdhcpd, etc.)...")
1003
    install_package("nfqueue-bindings-python")
1004
    install_package("nfdhcpd")
1005
    tmpl = "/etc/nfdhcpd/nfdhcpd.conf"
1006
    replace = {
1007
      "ns_node_ip": env.env.ns.ip
1008
      }
1009
    custom = customize_settings_from_tmpl(tmpl, replace)
1010
    put(custom, tmpl)
1011
    try_run("/etc/init.d/nfdhcpd restart")
1012

    
1013
    install_package("snf-network")
1014
    cmd = """
1015
    sed -i 's/MAC_MASK.*/MAC_MASK = ff:ff:f0:00:00:00/' /etc/default/snf-network
1016
    """
1017
    try_run(cmd)
1018

    
1019

    
1020
@roles("router")
1021
def setup_router():
1022
    debug(env.host, " * Setting up internal router for NAT...")
1023
    cmd = """
1024
    echo 1 > /proc/sys/net/ipv4/ip_forward
1025
    iptables -t nat -A POSTROUTING -s {0} -o {3} -j MASQUERADE
1026
    ip addr add {1} dev {2}
1027
    ip route add {0} dev {2} src {1}
1028
    """.format(env.env.synnefo_public_network_subnet,
1029
               env.env.synnefo_public_network_gateway,
1030
               env.env.common_bridge, env.env.public_iface)
1031
    try_run(cmd)
1032

    
1033
@roles("cyclades")
1034
def cyclades_loaddata():
1035
    debug(env.host, " * Loading initial data for cyclades...")
1036
    tmpl = "/tmp/flavor.json"
1037
    replace = {}
1038
    custom = customize_settings_from_tmpl(tmpl, replace)
1039
    put(custom, tmpl)
1040
    try_run("snf-manage loaddata " + tmpl)
1041
    #run("snf-manage loaddata flavors")
1042

    
1043

    
1044
@roles("cyclades")
1045
def setup_cyclades():
1046
    debug(env.host, "Setting up snf-cyclades-app...")
1047
    with settings(hide("everything")):
1048
        try_run("ping -c1 accounts." + env.env.domain)
1049
        try_run("ping -c1 " + env.env.db.ip)
1050
        try_run("ping -c1 " + env.env.mq.ip)
1051
    setup_gunicorn()
1052
    setup_apache()
1053
    setup_webproject()
1054
    install_package("memcached")
1055
    install_package("python-memcache")
1056
    install_package("snf-pithos-backend")
1057
    install_package("kamaki")
1058
    install_package("snf-cyclades-app")
1059
    install_package("python-django-south")
1060
    tmpl = "/etc/synnefo/cyclades.conf"
1061

    
1062
    with settings(host_string=env.env.accounts.hostname):
1063
        service_id, service_token = get_service_details("cyclades")
1064

    
1065
    replace = {
1066
        "ACCOUNTS": env.env.accounts.fqdn,
1067
        "CYCLADES": env.env.cyclades.fqdn,
1068
        "mq_node": env.env.mq.ip,
1069
        "db_node": env.env.db.ip,
1070
        "synnefo_user": env.env.synnefo_user,
1071
        "synnefo_db_passwd": env.env.synnefo_db_passwd,
1072
        "synnefo_rabbitmq_passwd": env.env.synnefo_rabbitmq_passwd,
1073
        "pithos_dir": env.env.pithos_dir,
1074
        "common_bridge": env.env.common_bridge,
1075
        "HOST": env.env.cyclades.ip,
1076
        "domain": env.env.domain,
1077
        "CYCLADES_SERVICE_TOKEN": service_token,
1078
        "proxy": env.env.cyclades.hostname == env.env.accounts.hostname
1079
        }
1080
    custom = customize_settings_from_tmpl(tmpl, replace)
1081
    put(custom, tmpl, mode=0644)
1082
    try_run("/etc/init.d/gunicorn restart")
1083

    
1084
    cmd = """
1085
    sed -i 's/false/true/' /etc/default/snf-dispatcher
1086
    /etc/init.d/snf-dispatcher start
1087
    """
1088
    try_run(cmd)
1089

    
1090
    try_run("snf-manage syncdb")
1091
    try_run("snf-manage migrate --delete-ghost-migrations")
1092

    
1093

    
1094
@roles("cyclades")
1095
def get_backend_id(cluster_name="ganeti1.synnefo.deploy.local"):
1096
    backend_id = try_run("snf-manage backend-list 2>/dev/null | grep %s | awk '{print $1}'" % cluster_name)
1097
    return backend_id
1098

    
1099

    
1100
@roles("cyclades")
1101
def add_backend():
1102
    debug(env.host, "adding %s ganeti backend to cyclades..." % env.env.cluster.fqdn)
1103
    with settings(hide("everything")):
1104
        try_run("ping -c1 " + env.env.cluster.fqdn)
1105
    cmd = """
1106
    snf-manage backend-add --clustername={0} --user={1} --pass={2}
1107
    """.format(env.env.cluster.fqdn, env.env.synnefo_user,
1108
               env.env.synnefo_rapi_passwd)
1109
    try_run(cmd)
1110
    backend_id = get_backend_id(env.env.cluster.fqdn)
1111
    try_run("snf-manage backend-modify --drained=False " + backend_id)
1112

    
1113
@roles("cyclades")
1114
def pin_user_to_backend(user_email):
1115
    backend_id = get_backend_id(env.env.cluster.fqdn)
1116
    # pin user to backend
1117
    cmd = """
1118
cat <<EOF >> /etc/synnefo/cyclades.conf
1119

1120
BACKEND_PER_USER = {
1121
  '%s': %s,
1122
}
1123

1124
EOF
1125
/etc/init.d/gunicorn restart
1126
    """  % (user_email, backend_id)
1127
    try_run(cmd)
1128

    
1129
@roles("cyclades")
1130
def add_pools():
1131
    debug(env.host, " * Creating pools of resources (brigdes, mac prefixes) in cyclades...")
1132
    try_run("snf-manage pool-create --type=mac-prefix --base=aa:00:0 --size=65536")
1133
    try_run("snf-manage pool-create --type=bridge --base=prv --size=20")
1134

    
1135

    
1136
@roles("cyclades")
1137
def add_network():
1138
    debug(env.host, " * Adding public network in cyclades...")
1139
    backend_id = get_backend_id(env.env.cluster.fqdn)
1140
    cmd = """
1141
    snf-manage network-create --subnet={0} --gateway={1} --public --dhcp --flavor={2} --mode=bridged --link={3} --name=Internet --backend-id={4}
1142
    """.format(env.env.synnefo_public_network_subnet,
1143
               env.env.synnefo_public_network_gateway,
1144
               env.env.synnefo_public_network_type,
1145
               env.env.common_bridge, backend_id)
1146
    try_run(cmd)
1147

    
1148

    
1149
@roles("cyclades")
1150
def setup_vncauthproxy():
1151
    debug(env.host, " * Setting up vncauthproxy...")
1152
    install_package("snf-vncauthproxy")
1153
    cmd = """
1154
    echo CHUID="www-data:nogroup" >> /etc/default/vncauthproxy
1155
    rm /var/log/vncauthproxy/vncauthproxy.log
1156
    """
1157
    try_run(cmd)
1158
    try_run("/etc/init.d/vncauthproxy restart")
1159

    
1160
@roles("client")
1161
def setup_kamaki():
1162
    debug(env.host, "Setting up kamaki client...")
1163
    with settings(hide("everything")):
1164
        try_run("ping -c1 accounts." + env.env.domain)
1165
        try_run("ping -c1 cyclades." + env.env.domain)
1166
        try_run("ping -c1 pithos." + env.env.domain)
1167

    
1168
    with settings(host_string=env.env.db.hostname):
1169
        uid, user_auth_token, user_uuid = get_auth_token_from_db(env.env.user_email)
1170

    
1171
    install_package("python-progress")
1172
    install_package("kamaki")
1173
    cmd = """
1174
    kamaki config set cloud.default.url "https://{0}/astakos/identity/v2.0/"
1175
    kamaki config set cloud.default.token {1}
1176
    """.format(env.env.accounts.fqdn, user_auth_token)
1177
    try_run(cmd)
1178
    try_run("kamaki file create images")
1179

    
1180
@roles("client")
1181
def upload_image(image="debian_base.diskdump"):
1182
    debug(env.host, " * Uploading initial image to pithos...")
1183
    image = "debian_base.diskdump"
1184
    try_run("wget {0} -O /tmp/{1}".format(env.env.debian_base_url, image))
1185
    try_run("kamaki file upload --container images /tmp/{0} {0}".format(image))
1186

    
1187
@roles("client")
1188
def register_image(image="debian_base.diskdump"):
1189
    debug(env.host, " * Register image to plankton...")
1190
    with settings(host_string=env.env.db.hostname):
1191
        uid, user_auth_token, user_uuid = get_auth_token_from_db(env.env.user_email)
1192

    
1193
    pithos_url = "pithos://{0}/images/{1}".format(user_uuid, image)
1194
    cmd = """
1195
    sleep 5
1196
    kamaki image register "Debian Base" {0} --public --disk-format=diskdump --property OSFAMILY=linux --property ROOT_PARTITION=1 --property description="Debian Squeeze Base System" --property size=450M --property kernel=2.6.32 --property GUI="No GUI" --property sortorder=1 --property USERS=root --property OS=debian
1197
    """.format(pithos_url)
1198
    try_run(cmd)
1199

    
1200
@roles("client")
1201
def setup_burnin():
1202
    debug(env.host, "Setting up burnin testing tool...")
1203
    install_package("kamaki")
1204
    install_package("snf-tools")
1205

    
1206
@roles("pithos")
1207
def add_image_locally():
1208
    debug(env.host, " * Getting image locally in order snf-image to use it directly..")
1209
    image = "debian_base.diskdump"
1210
    try_run("wget {0} -O /srv/okeanos/{1}".format(env.env.debian_base_url, image))
1211

    
1212

    
1213
@roles("master")
1214
def gnt_instance_add(name="test"):
1215
    debug(env.host, " * Adding test instance to Ganeti...")
1216
    osp="""img_passwd=gamwtosecurity,img_format=diskdump,img_id=debian_base,img_properties='{"OSFAMILY":"linux"\,"ROOT_PARTITION":"1"}'"""
1217
    cmd = """
1218
    gnt-instance add  -o snf-image+default --os-parameters {0} -t plain --disk 0:size=1G --no-name-check --no-ip-check --net 0:ip=pool,network=test --no-install --hypervisor-parameters kvm:machine_version=pc-1.0 {1}
1219
    """.format(osp, name)
1220
    try_run(cmd)
1221

    
1222
@roles("master")
1223
def gnt_network_add(name="test", subnet="10.0.0.0/26", gw="10.0.0.1", mode="bridged", link="br0"):
1224
    debug(env.host, " * Adding test network to Ganeti...")
1225
    cmd = """
1226
    gnt-network add --network={1} --gateway={2} {0}
1227
    gnt-network connect {0} {3} {4}
1228
    """.format(name, subnet, gw, mode, link)
1229
    try_run(cmd)
1230

    
1231
@roles("ips")
1232
def test():
1233
    debug(env.host, "Testing...")
1234
    try_run("hostname && date")