mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Add kwargs to package modules
These modules still need to have version support added
This commit is contained in:
parent
fa03eebf15
commit
1f022ae62b
@ -77,7 +77,7 @@ def refresh_db():
|
||||
return servers
|
||||
|
||||
|
||||
def install(pkg, refresh=False, repo='', skip_verify=False):
|
||||
def install(pkg, refresh=False, repo='', skip_verify=False, **kwargs):
|
||||
'''
|
||||
Install the passed package
|
||||
|
||||
|
@ -165,7 +165,7 @@ def clean_metadata():
|
||||
return refresh_db()
|
||||
|
||||
|
||||
def install(pkgs, refresh=False, repo='', skip_verify=False):
|
||||
def install(pkgs, refresh=False, repo='', skip_verify=False, **kwargs):
|
||||
'''
|
||||
Install the passed package(s)
|
||||
|
||||
|
@ -116,7 +116,7 @@ def refresh_db():
|
||||
return True
|
||||
|
||||
|
||||
def install(pkg, refresh=False, repo='', skip_verify=False):
|
||||
def install(pkg, refresh=False, repo='', skip_verify=False, **kwargs):
|
||||
'''
|
||||
Install the passed package
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user