Sha256: e3086aec85d863816d1fe896b5b6a2a84d868a66009b700d24f4456db1e8be9e

Contents?: true

Size: 1.07 KB

Versions: 36

Compression:

Stored size: 1.07 KB

Contents

#!/usr/bin/env ruby
#^syntax detection

version ">= 1.5.1"

node 'vagrant' do

  provider      TestLab::Provider::Local

  provisioners  [
    TestLab::Provisioner::Raring,
    TestLab::Provisioner::AptCacherNG,
    TestLab::Provisioner::Bind,
    TestLab::Provisioner::Resolv
  ]

  network 'labnet' do
    provisioners  [
      TestLab::Provisioner::Bind
    ]

    address       '10.128.0.1/16'
    bridge        'br_test'
  end

  container "test-server" do
    distro        "ubuntu"
    release       "precise"

    provisioners   [
      TestLab::Provisioner::Resolv,
      TestLab::Provisioner::AptCacherNG,
      TestLab::Provisioner::Apt
    ]

    user do
      username         'deployer'
      password         'deployer'
      identity         File.join(ENV['HOME'], '.ssh', 'id_rsa')
      public_identity  File.join(ENV['HOME'], '.ssh', 'id_rsa.pub')
      uid              2600
      gid              2600
    end

    interface do
      network_id  'labnet'
      name        'eth0'
      address     '10.128.0.254/16'
      mac         '00:00:5e:63:b5:9f'
    end
  end

end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
testlab-1.18.0 features/support/Labfile.local
testlab-1.17.0 features/support/Labfile.local
testlab-1.16.1 features/support/Labfile.local
testlab-1.16.0 features/support/Labfile.local
testlab-1.15.1 features/support/Labfile.local
testlab-1.15.0 features/support/Labfile.local
testlab-1.14.0 features/support/Labfile.local
testlab-1.13.0 features/support/Labfile.local
testlab-1.12.0 features/support/Labfile.local
testlab-1.11.7 features/support/Labfile.local
testlab-1.11.6 features/support/Labfile.local
testlab-1.11.5 features/support/Labfile.local
testlab-1.11.4 features/support/Labfile.local
testlab-1.11.3 features/support/Labfile.local
testlab-1.11.2 features/support/Labfile.local
testlab-1.11.1 features/support/Labfile.local
testlab-1.11.0 features/support/Labfile.local
testlab-1.10.0 features/support/Labfile.local
testlab-1.9.2 features/support/Labfile.local
testlab-1.9.1 features/support/Labfile.local