Defined Type: weave::run

Defined in:
manifests/run.pp

Overview

Parameters:

  • host (Any)
  • ip (Any)
  • image (Any)
  • options (Any)


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'manifests/run.pp', line 2

define weave::run ( $host, $ip, $image, $options ){

  $docker = hiera('weave::docker', '/usr/bin/docker')
  $weave = hiera('weave::script', '/usr/local/bin/weave')
  $docker_host_weave_ip = hiera('weave::docker_host_weave_ip', undef)

  validate_absolute_path( $weave )
  validate_absolute_path( $docker )
  validate_string( $image )
  validate_string( $options )
  validate_bool( is_ip_address( $ip ) )

  exec { "weave run $ip $image":
    command => "$weave run $ip $options $image",
     unless => "$docker inspect -f '{{ .Image }}' $host 2>&1 | /bin/grep -v '^Error\|<no value>' -q ",
    timeout => 600,
     require => [ Exec["weave_launch_$docker_host_weave_ip"],
                  Exec["reset_weave_for_$docker_host_weave_ip"] ],
  }

}