From 0f8bc2a6869d1fa1781568a06b7c8a94eef11328 Mon Sep 17 00:00:00 2001 From: Thomas S Hatch Date: Thu, 5 Jan 2012 17:29:42 -0700 Subject: [PATCH] update doc string for the service module --- salt/modules/service.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/salt/modules/service.py b/salt/modules/service.py index 5060ce9123..ae394f2155 100644 --- a/salt/modules/service.py +++ b/salt/modules/service.py @@ -1,6 +1,6 @@ ''' -Top level package command wrapper, used to translate the os detected by the -grains to the correct service manager +The default service module, if not otherwise specified salt will fall back +to this basic module ''' import os @@ -83,3 +83,4 @@ def status(name, sig=None): cmd = "{0[ps]} | grep {1} | grep -v grep | awk '{{print $2}}'".format( __grains__, sig) return __salt__['cmd.run'](cmd).strip() +