NetBSD Service function alias.

This commit is contained in:
Robert Keizer 2013-05-28 00:24:06 -05:00
parent cf7438acab
commit cf14875e8f

View File

@ -6,6 +6,10 @@ The service module for NetBSD
import os import os
import glob import glob
__func_alias__ = {
'reload_': 'reload'
}
def __virtual__(): def __virtual__():
''' '''
Only work on NetBSD Only work on NetBSD
@ -51,7 +55,7 @@ def restart(name, **kwargs):
return not __salt__['cmd.retcode'](cmd) return not __salt__['cmd.retcode'](cmd)
def reload(name, **kwargs): def reload_(name, **kwargs):
''' '''
Reload the named service Reload the named service