Sha256: 0eee7f32bf9a0c193a68f65f7307fa41addb7aeb068b951b4a98b33950db5981

Contents?: true

Size: 642 Bytes

Versions: 1

Compression:

Stored size: 642 Bytes

Contents

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

host :vagrant do
  provider    TestLab::Provider::Vagrant
  config      ({
    :vagrant => {
      :ip => "192.168.33.10",
      :cpus => 4,
      :memory => 4096
    }
  })

  network "west-1" do
  end

  container "devop-test-1" do
    provisioner   TestLab::Provisioner::Chef
    distro        "ubuntu"
    release       "lucid"
    persist       true
    ip            "192.168.0.1"
    mac           "00:00:5e:35:ea:d5"

    config ({
      :chef => {
        :environment => "test",
        :run_list => [
          "role[base]",
          "role[chef-client]"
        ]
      }
    })
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
testlab-0.0.2 spec/support/Labfile