eid-ops/fabfile/__init__.py

80 lines
1.7 KiB
Python
Raw Normal View History

2013-09-02 16:01:50 +02:00
from fabric.api import run,env
2014-02-22 21:43:18 +01:00
from fabric.operations import get,put
2013-09-02 16:01:50 +02:00
import os
import yaml
import re
2014-02-22 21:43:18 +01:00
import sys
from fabfile.db import cosmos_db
2017-08-15 11:37:45 +02:00
from fabric.api import task
2013-09-02 16:01:50 +02:00
env.user = 'root'
env.timeout = 30
env.connection_attempts = 3
env.warn_only = True
env.skip_bad_hosts = True
2014-02-22 21:43:18 +01:00
env.roledefs = cosmos_db()['members']
2017-08-15 11:37:45 +02:00
env.use_ssh_config = True
2013-09-02 16:01:50 +02:00
2017-08-15 11:37:45 +02:00
def _lookup(node_name):
if os.path.exists(os.path.join(node_name,".hostname")):
with open(os.path.join(node_name,".hostname"),"r") as fd:
return fd.readline().strip()
return node_name
@task
2013-09-02 16:01:50 +02:00
def all():
2014-02-22 21:43:18 +01:00
env.hosts = cosmos_db()['members']['all']
2013-09-02 16:01:50 +02:00
2017-08-15 11:37:45 +02:00
@task
def h(key=None):
db = cosmos_db()
env.roledefs = db['members']
if key is None:
key = 'all'
_hosts = [key]
if key in env.roledefs:
_hosts = env.roledefs[key]
env.hosts = [ _lookup(h) for h in _hosts ]
@task
2013-09-02 16:01:50 +02:00
def cosmos():
2015-02-24 09:44:33 +01:00
run("/usr/local/bin/run-cosmos");
2013-09-02 16:01:50 +02:00
2017-08-15 11:37:45 +02:00
@task
def set_no_automatic_cosmos():
run("touch /etc/no-automatic-cosmos")
@task
def remove_no_automatic_cosmos():
run("rm /etc/no-automatic-cosmos")
@task
2013-09-02 16:01:50 +02:00
def upgrade():
2017-08-15 11:37:45 +02:00
run("apt-get -qq update && apt-get -y -q upgrade");
@task
def distupgrade():
2013-09-02 16:01:50 +02:00
run("apt-get -qq update && apt-get -y -q dist-upgrade");
2017-08-15 11:37:45 +02:00
@task
2013-09-02 16:01:50 +02:00
def facts():
get("/var/run/facts.yaml",local_path="facts/%(host)s.yaml")
2017-08-15 11:37:45 +02:00
@task
2013-09-02 16:01:50 +02:00
def chassis():
run("ipmi-chassis --get-chassis-status")
def newvm(fqdn,ip,domain):
run("vmbuilder kvm ubuntu --domain %s --dest /var/lib/libvirt/images/%s.img --arch x86_64 --hostname %s --mem 512 --ip %s --addpkg openssh-server" % (domain,fqdn,fqdn,ip))
2014-02-22 21:43:18 +01:00
2017-08-15 11:37:45 +02:00
@task
2014-02-22 21:43:18 +01:00
def cp(local,remote):
put(local,remote)
2017-08-15 11:37:45 +02:00
@task
def synci():
get("/etc/network/interfaces",local_path="%(host)s/global/overlay/etc/interfaces")