README.md in testlab-1.0.1 vs README.md in testlab-1.1.0
- old
+ new
@@ -207,10 +207,10 @@
Calling `TestLab.new` without a `:labfile` option will, by default, attempt to read `Labfile` from the current directory. This behavior can be changed by passing the `:labfile` key with a path to your desired "Labfile" as the value to your `TestLab.new`.
There are several easy accessors available to grab the first container and execute the command `uptime` on it via and SSH connection:
container = @testlab.containers.first
- container.ssh.exec(%(uptime))
+ container.exec(%(uptime))
We can also execute this command via `lxc-attach`:
container.lxc.attach(%(-- uptime))