当前位置: 首页>>代码示例>>Python>>正文


Python api.settings方法代码示例

本文整理汇总了Python中fabric.api.settings方法的典型用法代码示例。如果您正苦于以下问题:Python api.settings方法的具体用法?Python api.settings怎么用?Python api.settings使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在fabric.api的用法示例。


在下文中一共展示了api.settings方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: drop_db_connections

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def drop_db_connections(database_name):
    """
    looks up the db in local settings by its alias and drops any connections
    """

    drop_connections = """
        SELECT
            pg_terminate_backend(pid)
        FROM
            pg_stat_activity
        WHERE
            datname = '{db}'
        AND pid <> pg_backend_pid()
    """.format(db=database_name)

    psql(drop_connections) 
开发者ID:CalthorpeAnalytics,项目名称:urbanfootprint,代码行数:18,代码来源:methods.py

示例2: enable_dse

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def enable_dse(cluster_name, dse_url, dse_username, dse_password, dse_source_build_artifactory_url,
               dse_source_build_artifactory_username, dse_source_build_artifactory_password,
               dse_source_build_oauth_token):

    try:
        cluster = get_clusters(cluster_name, all_metadata=True)[cluster_name][0]
    except IndexError:
        raise ValueError("No cluster named {} found".format(cluster_name))

    cluster_ip = cluster['NetworkSettings']['IPAddress']
    with fab.settings(hosts=cluster_ip):
        fab_execute(fab_deploy.enable_dse, dse_url, dse_username, dse_password, dse_source_build_artifactory_url,
                    dse_source_build_artifactory_username, dse_source_build_artifactory_password,
                    dse_source_build_oauth_token)

    with fab.settings(hosts=cluster_ip, user="root"):
        fab_execute(tasks.restart_all_services) 
开发者ID:datastax,项目名称:cstar_perf,代码行数:19,代码来源:cstar_docker.py

示例3: bash

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def bash(script, nodes=None, user=None):
    """Run a bash script on a set of nodes
    
    script - A bash script written as a string or list.
    nodes  - The set of nodes to run the command on. If None, all nodes of 
             the cluster will be used.
    user   - The user to run the command as. If None, the default user specified 
             in the cluster configuration    
    """ 
    if type(script) in (list, tuple):
        script = "\n".join(script)
    if nodes is None:
        nodes = common.fab.env.hosts
    if user is None:
        user = common.fab.env.user
    with common.fab.settings(user=user, hosts=nodes):
        return execute(common.bash, script) 
开发者ID:datastax,项目名称:cstar_perf,代码行数:19,代码来源:benchmark.py

示例4: _setup_maven_authentication

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def _setup_maven_authentication(config):
    dse_source_build_artifactory_username = config.get('dse_source_build_artifactory_username')
    dse_source_build_artifactory_password = config.get('dse_source_build_artifactory_password')
    dse_source_build_artifactory_url = config.get('dse_source_build_artifactory_url')

    maven_settings = "<settings><mirrors><mirror><id>artifactory</id><name>DataStax Maven repository</name>" \
                     "<url>{url}</url>" \
                     "<mirrorOf>central,java.net2,xerial,datanucleus,apache,datastax-public-snapshot,datastax-public-release,datastax-deps,datastax-release,datastax-snapshot</mirrorOf>" \
                     "</mirror></mirrors><servers><server><id>artifactory</id><username>{username}</username>" \
                     "<password>{password}</password></server></servers></settings>" \
        .format(username=dse_source_build_artifactory_username, password=dse_source_build_artifactory_password,
                url=dse_source_build_artifactory_url)

    fab.local('rm -rf ~/.m2/settings.xml')
    fab.local('mkdir -p ~/.m2')
    fab.local('echo "{maven_settings}" > ~/.m2/settings.xml'.format(maven_settings=maven_settings)) 
开发者ID:datastax,项目名称:cstar_perf,代码行数:18,代码来源:fab_dse.py

示例5: build

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def build(name, ask=True, **kwargs):
    """
    Build the malicious mote to its target hardware.

    :param name: experiment name (or absolute path to experiment)
    :param ask: ask confirmation
    :param path: expanded path of the experiment (dynamically filled in through 'command' decorator with 'expand')
    :param kwargs: simulation keyword arguments (see the documentation for more information)
    """
    def is_device_present():
        with settings(hide(*HIDDEN_ALL), warn_only=True):
            return local("if [ -c /dev/ttyUSB0 ]; then echo 'ok'; else echo 'nok'; fi", capture=True) == 'ok'

    console = kwargs.get('console')
    counter, interval = 0.0, 0.5
    while not is_device_present():
        sleep(interval)
        counter += interval
        if counter % 5 == 0:
            logger.warning("Waiting for mote to be detected...")
        elif counter >= 120:
            logger.error("Something failed with the mote ; check that it mounts to /dev/ttyUSB0")
            return
    remake(name, build=True, **kwargs) if console is None else console.do_remake(name, build=True, **kwargs)
    return "Mote built on /dev/ttyUSB0" 
开发者ID:dhondta,项目名称:rpl-attacks,代码行数:27,代码来源:commands.py

示例6: dev

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def dev():
    """
    Put as the first task on the command line to select dev environment.
    For example: fab dev release_web_app
    Put in this task all the environment specific variables and settings.
    """
    env.hosts = ['dev.openconceptlab.com', ]
    env.user = 'deploy'
    env.web_domain = 'dev.openconceptlab.com'
    env.api_domain = 'api.dev.openconceptlab.com'
    env.OCL_API_TOKEN = os.environ.get('OCL_API_TOKEN')
    env.OCL_ANON_API_TOKEN = os.environ.get('OCL_ANON_API_TOKEN')
    env.random_string = _random_string(32)

    # which sites.json file to load the django site object from.
    env.site_spec = 'dev'

    env.AWS_ACCESS_KEY_ID = os.environ['AWS_ACCESS_KEY_ID']
    env.AWS_SECRET_ACCESS_KEY = os.environ['AWS_SECRET_ACCESS_KEY']
    env.AWS_STORAGE_BUCKET_NAME = 'ocl-source-export-development' 
开发者ID:OpenConceptLab,项目名称:ocl_web,代码行数:22,代码来源:fabfile.py

示例7: setup_nginx

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def setup_nginx():
    """Setup nginx.

    This can be re-run to update the application configuration via
    the ocl_nginx.conf.
    """
    with settings(warn_only=True):
        sudo('unlink /etc/nginx/sites-enabled/default')

    files.upload_template(_conf_path('ocl_nginx.conf'),
                          '/etc/nginx/sites-available/ocl', env, use_sudo=True)

    with settings(warn_only=True):
        sudo('ln -s /etc/nginx/sites-available/ocl /etc/nginx/sites-enabled/ocl')

    sudo('/etc/init.d/nginx restart') 
开发者ID:OpenConceptLab,项目名称:ocl_web,代码行数:18,代码来源:fabfile.py

示例8: fix_solr

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def fix_solr():
    """ Fix solr
        work in progress
    """
    with cd('/var/tmp'):
        print blue('pulling new code...')
        sudo('/etc/init.d/jetty stop')
        sleep(5)
        # run('rm -rf /opt/deploy/solr/collection1')

        print blue('copying new code...')
        # run('mkdir -p /opt/deploy/solr/collection1')
        # run("cp -r oclapi/solr/collection1/conf /opt/deploy/solr/collection1")

    with cd("/opt/deploy/ocl_api/ocl"):
        # there is no need for this, settings.py.eploy is actually wrong?
        # run("cp settings.py.deploy settings.py")
        with prefix('source /opt/virtualenvs/ocl_api/bin/activate'):
            with prefix('export DJANGO_CONFIGURATION="Production"'):
                with prefix('export DJANGO_SECRET_KEY="blah"'):
                    # this is really slow because it pull down django-norel
                    run('./manage.py build_solr_schema > ' +
                        '/opt/deploy/solr/collection1/conf/schema.xml')
    sleep(5)
    sudo('/etc/init.d/jetty start') 
开发者ID:OpenConceptLab,项目名称:ocl_web,代码行数:27,代码来源:fabfile.py

示例9: __init__

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def __init__(self, name, cwd=None):
        """Create a tmux session.

        Args:
            name (str): name of the new session
            cwd (str): initial directory of the session

        Options used:
            -d: do not attach to the new session
            -s: specify a name for the session
        """
        self.name = name

        with settings(hide('warnings'), warn_only=True):
            result = local("tmux new -d -s {}".format(name))  # start tmux session

        if result.failed:
            raise TmuxSessionExists()

        if cwd is None:
            cwd = os.getcwd()

        # move to current directory
        self.run("cd {}".format(cwd)) 
开发者ID:kelvinguu,项目名称:lang2program,代码行数:26,代码来源:io.py

示例10: put_secure

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def put_secure(user_group, mode, *args, **kwargs):
    missing_owner_code = 42
    user, group = user_group.split(":")

    files = put(*args, mode=mode, **kwargs)

    for file in files:
        with settings(warn_only=True):
            command = \
                "( getent passwd {user} >/dev/null || ( rm -f {file} ; " \
                "exit {missing_owner_code} ) ) && " \
                "chown {user_group} {file}".format(
                    user=user, file=file, user_group=user_group,
                    missing_owner_code=missing_owner_code)

            result = sudo(command)

            if result.return_code == missing_owner_code:
                abort("User %s does not exist. Make sure the Presto "
                      "server RPM is installed and try again" % (user,))
            elif result.failed:
                abort("Failed to chown file %s" % (file,)) 
开发者ID:prestodb,项目名称:presto-admin,代码行数:24,代码来源:fabricapi.py

示例11: deploy

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def deploy(target='dev', sha1=None):
    if sha1 is None:
        # get current working git sha1
        sha1 = local('git rev-parse HEAD', capture=True)
    # server code reset to current working sha1
    home_dir = '/home/pyconkr/{target}.pycon.kr/pyconkr-2016'.format(target=target)

    if target == 'dev':
        python_env = '/home/pyconkr/.pyenv/versions/pyconkr-2016-dev'
    else:
        python_env = '/home/pyconkr/.pyenv/versions/pyconkr-2016'

    with settings(cd(home_dir), shell_env(DJANGO_SETTINGS_MODULE='pyconkr.settings_prod')):
        sudo('git fetch --all -p', user='pyconkr')
        sudo('git reset --hard ' + sha1, user='pyconkr')
        sudo('bower install', user='pyconkr')
        sudo('%s/bin/pip install -r requirements.txt' % python_env, user='pyconkr')
        sudo('%s/bin/python manage.py compilemessages' % python_env, user='pyconkr')
        sudo('%s/bin/python manage.py migrate' % python_env, user='pyconkr')
        sudo('%s/bin/python manage.py collectstatic --noinput' % python_env, user='pyconkr')
        # worker reload
        run('echo r > /var/run/pyconkr-2016-%s.fifo' % target) 
开发者ID:pythonkr,项目名称:pyconapac-2016,代码行数:24,代码来源:fabfile.py

示例12: flatpages_mig

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def flatpages_mig(direction='www'):
    dev_env = '/home/pyconkr/.pyenv/versions/pyconkr-2016-dev/bin/python'
    www_env = '/home/pyconkr/.pyenv/versions/pyconkr-2016/bin/python'
    from_env, to_env = (dev_env, www_env) if direction=='www' else (www_env, dev_env)
    dev_dir = '/home/pyconkr/dev.pycon.kr/pyconkr-2016'
    www_dir = '/home/pyconkr/www.pycon.kr/pyconkr-2016'
    from_dir, to_dir = (dev_dir, www_dir) if direction=='www' else (www_dir, dev_dir)
    with settings(cd(from_dir),
            shell_env(DJANGO_SETTINGS_MODULE='pyconkr.settings_prod')
            ):
        sudo('{python} manage.py dumpdata --indent 2 flatpages -o {fixture_to}'.format(
            fixture_to=os.path.join(to_dir, 'pyconkr', 'fixtures', 'flatpages.json'),
            python=from_env))
    with settings(cd(to_dir),
            shell_env(DJANGO_SETTINGS_MODULE='pyconkr.settings_prod')
            ):
        sudo('{python} manage.py loaddata flatpages'.format(
             python=to_env)) 
开发者ID:pythonkr,项目名称:pyconapac-2016,代码行数:20,代码来源:fabfile.py

示例13: _install_cassandra_2_0

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def _install_cassandra_2_0():
     #install cassandra
    run('echo "deb http://debian.datastax.com/community stable main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list')
    run('curl -L http://debian.datastax.com/debian/repo_key | sudo apt-key add -')
    sudo("apt-get update")
    sudo("sudo apt-get install --force-yes -y dsc20=2.0.12-1 cassandra=2.0.12 datastax-agent")
    with settings(warn_only=True):
        sudo("service cassandra stop")
    sudo("rm -rf /mnt/cassandra/data/system/*")
    sudo("rm -rf /mnt/cassandra/data/dse*")

    with settings(warn_only=True):
        sudo("mv /etc/security/limits.d/cassandra.conf /etc/security/limits.d/cassandra.conf.bak")

    run('echo "cassandra - memlock unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "cassandra - nofile 100000" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "cassandra - nproc 32768" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "cassandra - as unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf')

    # for Ubuntu
    run('echo "root - memlock unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "root - nofile 100000" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "root - nproc 32768" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "root - as unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf') 
开发者ID:CrowdStrike,项目名称:cassandra-tools,代码行数:26,代码来源:fabfile.py

示例14: _install_cassandra_2_1

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def _install_cassandra_2_1():
     #install cassandra

    run('echo "deb http://debian.datastax.com/community stable main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list')
    run('curl -L http://debian.datastax.com/debian/repo_key | sudo apt-key add -')
    sudo("apt-get update")
    sudo("sudo apt-get install --force-yes -y dsc21=2.1.9-1 cassandra=2.1.9 cassandra-tools=2.1.9 datastax-agent")
    with settings(warn_only=True):
        sudo("service cassandra stop")
    sudo("rm -rf /mnt/cassandra/data/system/*")
    sudo("rm -rf /mnt/cassandra/data/dse*")

    with settings(warn_only=True):
        sudo("mv /etc/security/limits.d/cassandra.conf /etc/security/limits.d/cassandra.conf.bak")

    run('echo "cassandra - memlock unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "cassandra - nofile 100000" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "cassandra - nproc 32768" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "cassandra - as unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf')

    # for Ubuntu
    run('echo "root - memlock unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "root - nofile 100000" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "root - nproc 32768" | sudo tee -a /etc/security/limits.d/cassandra.conf')
    run('echo "root - as unlimited" | sudo tee -a /etc/security/limits.d/cassandra.conf') 
开发者ID:CrowdStrike,项目名称:cassandra-tools,代码行数:27,代码来源:fabfile.py

示例15: deploy_code

# 需要导入模块: from fabric import api [as 别名]
# 或者: from fabric.api import settings [as 别名]
def deploy_code(host_string):
    max_retries = 20
    retries = 0
    log.debug("Waiting for instance to answer on ssh at {}".format(host_string))
    with settings(host_string="ec2-user@" + host_string):
        while True:
            try:
                fabtools.require.git.working_copy('https://github.com/creativecommons/open-ledger.git', branch=env.branch)
                with cd('open-ledger'):
                    run('virtualenv venv --python=python3 -q')
                    run('./venv/bin/pip install -r requirements.txt -q')
                    break
            except NetworkError:
                time.sleep(5)
                retries += 1
                log.debug("Retrying {} of {}...".format(retries, max_retries))
            if retries > max_retries:
                raise LoaderException("Timed out waiting for ssh") 
开发者ID:cc-archive,项目名称:open-ledger,代码行数:20,代码来源:fabfile.py


注:本文中的fabric.api.settings方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。