supervisorctl 4.04 KB
Newer Older
Matt Wright committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/usr/bin/python
# -*- coding: utf-8 -*-

# (c) 2012, Matt Wright <matt@nobien.net>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible.  If not, see <http://www.gnu.org/licenses/>.
#

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
DOCUMENTATION = '''
---
module: supervisorctl
short_description: Manage the state of a program or group of programs running via Supervisord
description:
     - Manage the state of a program or group of programs running via Supervisord
version_added: "0.7"
options:
  name:
    description:
      - The name of the supervisord program/process to manage
    required: true
    default: null
  state:
    description:
      - The state of service
    required: true
    default: null
    choices: [ "started", "stopped", "restarted" ]
examples:
   - code: supervisorctl name=my_app state=started
     description: Manage the state of program I(my_app) to be in I(started) state.
requirements: [ ]
author: Matt Wright
'''

48 49
def _is_present(name, supervisorctl):
    rc, out, err = _run('%s status' % supervisorctl)
50
    return name in out
Matt Wright committed
51

52

53 54
def _is_running(name, supervisorctl):
    rc, out, err = _run('%s status %s' % (supervisorctl, name))
Matt Wright committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68
    return 'RUNNING' in out


def _run(cmd):
    # returns (rc, stdout, stderr) from shell command
    process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
                               stderr=subprocess.PIPE, shell=True)
    stdout, stderr = process.communicate()
    return (process.returncode, stdout, stderr)


def main():
    arg_spec = dict(
        name=dict(required=True),
69
        state=dict(required=True, choices=['present', 'started', 'restarted', 'stopped'])
Matt Wright committed
70 71 72 73 74 75 76
    )

    module = AnsibleModule(argument_spec=arg_spec)

    name = module.params['name']
    state = module.params['state']

77
    SUPERVISORCTL = module.get_bin_path('supervisorctl', True)
Matt Wright committed
78

79
    present = _is_present(name, SUPERVISORCTL)
80 81 82 83 84 85 86 87 88 89 90 91 92

    if state == 'present':
        if not present:
            _run('%s reread' % SUPERVISORCTL)
            rc, out, err = _run('%s add %s' % (SUPERVISORCTL, name))

            if '%s: added process group' % name in out:
                module.exit_json(changed=True, name=name, state=state)
            else:
                module.fail_json(msg=out, name=name, state=state)

        module.exit_json(changed=False, name=name, state=state)

93
    running = _is_running(name, SUPERVISORCTL)
Matt Wright committed
94 95 96 97 98 99 100 101 102 103 104 105 106

    if running and state == 'started':
        module.exit_json(changed=False, name=name, state=state)

    if running and state == 'stopped':
        rc, out, err = _run('%s stop %s' % (SUPERVISORCTL, name))

        if '%s: stopped' % name in out:
            module.exit_json(changed=True, name=name, state=state)

        module.fail_json(msg=out)

    elif running and state == 'restarted':
107
        rc, out, err = _run('%s update %s' % (SUPERVISORCTL, name))
Matt Wright committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
        rc, out, err = _run('%s restart %s' % (SUPERVISORCTL, name))

        if '%s: stopped' % name in out and '%s: started' % name in out:
            module.exit_json(changed=True, name=name, state=state)

        module.fail_json(msg=out)

    elif not running and state == 'started':
        rc, out, err = _run('%s start %s' % (SUPERVISORCTL, name))

        if '%s: started' % name in out:
            module.exit_json(changed=True, name=name, state=state)

        module.fail_json(msg=out)

    elif not running and state == 'restarted':
        module.fail_json(msg='Could not restart `%s` because it is not running' % name)

    module.exit_json(changed=False, name=name, state=state)

# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>

main()