@ -28,16 +28,30 @@ author:
options :
options :
name :
name :
description :
description :
- Name of the plugin to install . In Eleasticsearch > = 2.0 , the name can be an URL or file location .
- Name of the plugin to install .
required : True
required : True
state :
state :
description :
description :
- Desired state of a plugin .
- Desired state of a plugin .
choices : [ " present " , " absent " ]
choices : [ " present " , " absent " ]
default : present
default : present
src :
description :
- Optionally set the source location to retrieve the plugin from . This can be a file : / /
URL to install from a local file , or a remote URL . If this is not set , the plugin
location is just based on the name .
- The name parameter must match the descriptor in the plugin ZIP specified .
- Is only used if the state would change , which is solely checked based on the name
parameter . If , for example , the plugin is already installed , changing this has no
effect .
- For ES 1. x use url .
required : False
version_added : " 2.7 "
url :
url :
description :
description :
- Set exact URL to download the plugin from ( Only works for ES 1. x )
- Set exact URL to download the plugin from ( Only works for ES 1. x ) .
- For ES 2. x and higher , use src .
required : False
timeout :
timeout :
description :
description :
- " Timeout setting: 30s, 1m, 1h... "
- " Timeout setting: 30s, 1m, 1h... "
@ -133,8 +147,8 @@ def parse_plugin_repo(string):
return repo
return repo
def is_plugin_present ( plugin_ dir, working _dir) :
def is_plugin_present ( plugin_ name, plugin _dir) :
return os . path . isdir ( os . path . join ( working_dir, plugin_dir ) )
return os . path . isdir ( os . path . join ( plugin_dir, plugin_name ) )
def parse_error ( string ) :
def parse_error ( string ) :
@ -145,11 +159,12 @@ def parse_error(string):
return string
return string
def install_plugin ( module , plugin_bin , plugin_name , version , url , proxy_host , proxy_port , timeout , force ) :
def install_plugin ( module , plugin_bin , plugin_name , version , src , url , proxy_host , proxy_port , timeout , force ) :
cmd_args = [ plugin_bin , PACKAGE_STATE_MAP [ " present " ] , plugin_name ]
cmd_args = [ plugin_bin , PACKAGE_STATE_MAP [ " present " ] ]
is_old_command = ( os . path . basename ( plugin_bin ) == ' plugin ' )
# Timeout and version are only valid for plugin, not elasticsearch-plugin
# Timeout and version are only valid for plugin, not elasticsearch-plugin
if os. path . basename ( plugin_bin ) == ' plugin ' :
if is_old_command :
if timeout :
if timeout :
cmd_args . append ( " --timeout %s " % timeout )
cmd_args . append ( " --timeout %s " % timeout )
@ -160,11 +175,16 @@ def install_plugin(module, plugin_bin, plugin_name, version, url, proxy_host, pr
if proxy_host and proxy_port :
if proxy_host and proxy_port :
cmd_args . append ( " -DproxyHost= %s -DproxyPort= %s " % ( proxy_host , proxy_port ) )
cmd_args . append ( " -DproxyHost= %s -DproxyPort= %s " % ( proxy_host , proxy_port ) )
# Legacy ES 1.x
if url :
if url :
cmd_args . append ( " --url %s " % url )
cmd_args . append ( " --url %s " % url )
if force :
if force :
cmd_args . append ( " --batch " )
cmd_args . append ( " --batch " )
if src :
cmd_args . append ( src )
else :
cmd_args . append ( plugin_name )
cmd = " " . join ( cmd_args )
cmd = " " . join ( cmd_args )
@ -233,6 +253,7 @@ def main():
argument_spec = dict (
argument_spec = dict (
name = dict ( required = True ) ,
name = dict ( required = True ) ,
state = dict ( default = " present " , choices = PACKAGE_STATE_MAP . keys ( ) ) ,
state = dict ( default = " present " , choices = PACKAGE_STATE_MAP . keys ( ) ) ,
src = dict ( default = None ) ,
url = dict ( default = None ) ,
url = dict ( default = None ) ,
timeout = dict ( default = " 1m " ) ,
timeout = dict ( default = " 1m " ) ,
force = dict ( default = False ) ,
force = dict ( default = False ) ,
@ -242,12 +263,14 @@ def main():
proxy_port = dict ( default = None ) ,
proxy_port = dict ( default = None ) ,
version = dict ( default = None )
version = dict ( default = None )
) ,
) ,
mutually_exclusive = [ ( " src " , " url " ) ] ,
supports_check_mode = True
supports_check_mode = True
)
)
name = module . params [ " name " ]
name = module . params [ " name " ]
state = module . params [ " state " ]
state = module . params [ " state " ]
url = module . params [ " url " ]
url = module . params [ " url " ]
src = module . params [ " src " ]
timeout = module . params [ " timeout " ]
timeout = module . params [ " timeout " ]
force = module . params [ " force " ]
force = module . params [ " force " ]
plugin_bin = module . params [ " plugin_bin " ]
plugin_bin = module . params [ " plugin_bin " ]
@ -259,14 +282,15 @@ def main():
# Search provided path and system paths for valid binary
# Search provided path and system paths for valid binary
plugin_bin = get_plugin_bin ( module , plugin_bin )
plugin_bin = get_plugin_bin ( module , plugin_bin )
present = is_plugin_present ( parse_plugin_repo ( name ) , plugin_dir )
repo = parse_plugin_repo ( name )
present = is_plugin_present ( repo , plugin_dir )
# skip if the state is correct
# skip if the state is correct
if ( present and state == " present " ) or ( state == " absent " and not present ) :
if ( present and state == " present " ) or ( state == " absent " and not present ) :
module . exit_json ( changed = False , name = name , state = state )
module . exit_json ( changed = False , name = name , state = state )
if state == " present " :
if state == " present " :
changed , cmd , out , err = install_plugin ( module , plugin_bin , name , version , url, proxy_host , proxy_port , timeout , force )
changed , cmd , out , err = install_plugin ( module , plugin_bin , name , version , src, url, proxy_host , proxy_port , timeout , force )
elif state == " absent " :
elif state == " absent " :
changed , cmd , out , err = remove_plugin ( module , plugin_bin , name )
changed , cmd , out , err = remove_plugin ( module , plugin_bin , name )