Add kwargs to package modules

These modules still need to have version support added
This commit is contained in:
Thomas S Hatch 2012-02-09 11:33:39 -07:00
parent fa03eebf15
commit 1f022ae62b
3 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ def refresh_db():
return servers 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 Install the passed package

View File

@ -165,7 +165,7 @@ def clean_metadata():
return refresh_db() 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) Install the passed package(s)

View File

@ -116,7 +116,7 @@ def refresh_db():
return True 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 Install the passed package