2013-05-29 08:22:34 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2013, Darryl Stoflet <stoflet@gmail.com>
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: monit
|
|
|
|
short_description: Manage the state of a program monitored via Monit
|
|
|
|
description:
|
|
|
|
- Manage the state of a program monitored via I(Monit)
|
|
|
|
version_added: "1.2"
|
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- The name of the I(monit) program/process to manage
|
|
|
|
required: true
|
|
|
|
default: null
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- The state of service
|
|
|
|
required: true
|
|
|
|
default: null
|
|
|
|
choices: [ "present", "started", "stopped", "restarted", "monitored", "unmonitored", "reloaded" ]
|
|
|
|
requirements: [ ]
|
|
|
|
author: Darryl Stoflet
|
|
|
|
'''
|
|
|
|
|
2013-06-14 11:53:43 +02:00
|
|
|
EXAMPLES = '''
|
|
|
|
# Manage the state of program "httpd" to be in "started" state.
|
|
|
|
- monit: name=httpd state=started
|
|
|
|
'''
|
|
|
|
|
2013-05-29 08:22:34 +02:00
|
|
|
def main():
|
|
|
|
arg_spec = dict(
|
|
|
|
name=dict(required=True),
|
|
|
|
state=dict(required=True, choices=['present', 'started', 'restarted', 'stopped', 'monitored', 'unmonitored', 'reloaded'])
|
|
|
|
)
|
|
|
|
|
|
|
|
module = AnsibleModule(argument_spec=arg_spec, supports_check_mode=True)
|
|
|
|
|
|
|
|
name = module.params['name']
|
|
|
|
state = module.params['state']
|
|
|
|
|
|
|
|
MONIT = module.get_bin_path('monit', True)
|
|
|
|
|
|
|
|
if state == 'reloaded':
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
rc, out, err = module.run_command('%s reload' % MONIT)
|
2014-05-08 19:18:28 +02:00
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg='monit reload failed', stdout=out, stderr=err)
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=True, name=name, state=state)
|
|
|
|
|
2014-04-16 19:04:19 +02:00
|
|
|
def status():
|
2014-04-25 14:30:19 +02:00
|
|
|
"""Return the status of the process in monit, or the empty string if not present."""
|
2014-04-16 19:04:19 +02:00
|
|
|
rc, out, err = module.run_command('%s summary' % MONIT, check_rc=True)
|
|
|
|
for line in out.split('\n'):
|
|
|
|
# Sample output lines:
|
|
|
|
# Process 'name' Running
|
|
|
|
# Process 'name' Running - restart pending
|
|
|
|
parts = line.lower().split()
|
|
|
|
if len(parts) > 2 and parts[0] == 'process' and parts[1] == "'%s'" % name:
|
|
|
|
return ' '.join(parts[2:])
|
|
|
|
else:
|
2014-04-25 14:30:19 +02:00
|
|
|
return ''
|
2014-04-16 19:04:19 +02:00
|
|
|
|
|
|
|
def run_command(command):
|
|
|
|
"""Runs a monit command, and returns the new status."""
|
|
|
|
module.run_command('%s %s %s' % (MONIT, command, name), check_rc=True)
|
|
|
|
return status()
|
|
|
|
|
2014-04-25 14:30:19 +02:00
|
|
|
present = status() != ''
|
2013-05-29 08:22:34 +02:00
|
|
|
|
|
|
|
if not present and not state == 'present':
|
|
|
|
module.fail_json(msg='%s process not presently configured with monit' % name, name=name, state=state)
|
|
|
|
|
|
|
|
if state == 'present':
|
|
|
|
if not present:
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
2014-04-16 19:04:19 +02:00
|
|
|
status = run_command('reload')
|
2014-04-25 14:30:19 +02:00
|
|
|
if status == '':
|
|
|
|
module.fail_json(msg='%s process not configured with monit' % name, name=name, state=state)
|
2013-05-29 08:22:34 +02:00
|
|
|
else:
|
2014-04-16 19:04:19 +02:00
|
|
|
module.exit_json(changed=True, name=name, state=state)
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=False, name=name, state=state)
|
|
|
|
|
2014-04-16 19:04:19 +02:00
|
|
|
running = 'running' in status()
|
2013-05-29 08:22:34 +02:00
|
|
|
|
2014-04-16 19:04:19 +02:00
|
|
|
if running and state in ['started', 'monitored']:
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=False, name=name, state=state)
|
|
|
|
|
|
|
|
if running and state == 'stopped':
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
2014-04-16 19:04:19 +02:00
|
|
|
status = run_command('stop')
|
|
|
|
if status in ['not monitored'] or 'stop pending' in status:
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=True, name=name, state=state)
|
2014-04-25 14:30:19 +02:00
|
|
|
module.fail_json(msg='%s process not stopped' % name, status=status)
|
2013-05-29 08:22:34 +02:00
|
|
|
|
|
|
|
if running and state == 'unmonitored':
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
2014-04-16 19:04:19 +02:00
|
|
|
status = run_command('unmonitor')
|
|
|
|
if status in ['not monitored']:
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=True, name=name, state=state)
|
2014-04-25 14:30:19 +02:00
|
|
|
module.fail_json(msg='%s process not unmonitored' % name, status=status)
|
2013-05-29 08:22:34 +02:00
|
|
|
|
|
|
|
elif state == 'restarted':
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
2014-04-16 19:04:19 +02:00
|
|
|
status = run_command('restart')
|
|
|
|
if status in ['initializing', 'running'] or 'restart pending' in status:
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=True, name=name, state=state)
|
2014-04-25 14:30:19 +02:00
|
|
|
module.fail_json(msg='%s process not restarted' % name, status=status)
|
2013-05-29 08:22:34 +02:00
|
|
|
|
|
|
|
elif not running and state == 'started':
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
2014-04-16 19:04:19 +02:00
|
|
|
status = run_command('start')
|
|
|
|
if status in ['initializing', 'running'] or 'start pending' in status:
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=True, name=name, state=state)
|
2014-04-25 14:30:19 +02:00
|
|
|
module.fail_json(msg='%s process not started' % name, status=status)
|
2013-05-29 08:22:34 +02:00
|
|
|
|
|
|
|
elif not running and state == 'monitored':
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
2014-04-16 19:04:19 +02:00
|
|
|
status = run_command('monitor')
|
2014-05-08 23:46:32 +02:00
|
|
|
if status not in ['not monitored']:
|
2013-05-29 08:22:34 +02:00
|
|
|
module.exit_json(changed=True, name=name, state=state)
|
2014-04-25 14:30:19 +02:00
|
|
|
module.fail_json(msg='%s process not monitored' % name, status=status)
|
2013-05-29 08:22:34 +02:00
|
|
|
|
|
|
|
module.exit_json(changed=False, name=name, state=state)
|
|
|
|
|
2013-12-02 21:13:49 +01:00
|
|
|
# import module snippets
|
2013-12-02 21:11:23 +01:00
|
|
|
from ansible.module_utils.basic import *
|
2013-05-29 08:22:34 +02:00
|
|
|
|
|
|
|
main()
|