Skip to main content

Integration helpers for Fabric and Rundeck.

Project description

Provides helpers for integration between Fabric and Rundeck, via rundeck-fabric.

Cron

You can add scheduled execution to a fabric task using the cron helper:

from fabric.api import task
from fabric_rundeck import cron

@cron('0 12 * * *')
@task
def mytask():
    pass

There are also helpers for hourly, daily, and monthly:

from fabric.api import task
from fabric_rundeck import daily

@daily
@task
def mytask():
    pass

Fabfile Information

Run this module (python -m fabric_rundeck) to print information about the local fabfile to stdout in JSON format:

$ python -m fabric_rundeck
[
  {
    "cron": null,
    "path": [],
    "argspec": {
      "keywords": null,
      "args": [],
      "defaults": null,
      "varargs": null
    },
    "name": "mytask",
    "doc": null
  }
]

You can also pass a path to a fabfile explicitly:

$ python -m fabric_rundeck path/to/fabfile.py
...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fabric_rundeck-1.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

fabric_rundeck-1.2-py27-none-any.whl (6.4 kB view hashes)

Uploaded Python 2.7

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page