From 18f0302de84e3707e3cd3fe4a1131bb52dea6c2a Mon Sep 17 00:00:00 2001 From: Stephen Fromm Date: Fri, 17 Aug 2012 13:55:18 -0700 Subject: [PATCH] Add pattern option to service module Adds ability to check service status based on pattern. The pattern is a simple string. If a pattern is provided, the output of ps is checked first. --- library/service | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/library/service b/library/service index 1f5d7476e0c..5010887056c 100755 --- a/library/service +++ b/library/service @@ -18,9 +18,12 @@ # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . +import platform + SERVICE = None CHKCONFIG = None INITCTL = None +PS_OPTIONS = 'auxww' def _find_binaries(m): # list of possible paths for service/chkconfig binaries @@ -56,14 +59,33 @@ def _find_binaries(m): else: INITCTL = None -def _get_service_status(name): +def _get_service_status(name, pattern): rc, status_stdout, status_stderr = _run("%s %s status" % (SERVICE, name)) # set the running state to None because we don't know it yet running = None + # If pattern is provided, search for that + # before checking initctl, service output, and other tricks + if pattern is not None: + psbin = '/bin/ps' + if not os.path.exists(psbin): + if os.path.exists('/usr/bin/ps'): + psbin = '/usr/bin/ps' + else: + psbin = None + if psbin is not None: + (rc, psout, pserr) = _run('%s %s' % (psbin, PS_OPTIONS)) + # If rc is 0, set running as appropriate + # If ps command fails, fall back to other means. + if rc == 0: + if pattern in psout: + running = True + else: + running = False + # Check if we got upstart on the system and then the job state - if INITCTL != None: + if INITCTL != None and running is None: # check the job status by upstart response initctl_rc, initctl_status_stdout, initctl_status_stderr = _run("%s status %s" % (INITCTL, name)) if initctl_status_stdout.find("stop/waiting") != -1: @@ -134,21 +156,29 @@ def main(): argument_spec = dict( name = dict(required=True), state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']), + pattern = dict(required=False, default=None), enabled = dict(choices=BOOLEANS) ) ) name = module.params['name'] state = module.params['state'] + pattern = module.params['pattern'] enable = module.boolean(module.params.get('enabled', None)) + # Set PS options here if 'ps auxww' will not work on + # target platform + if platform.system() == 'SunOS': + global PS_OPTIONS + PS_OPTIONS = '-ef' + # =========================================== # find binaries locations on minion _find_binaries(module) # =========================================== # get service status - running = _get_service_status(name) + running = _get_service_status(name, pattern) # =========================================== # Some common variables