The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:

package Rex::Virtualization::Docker::start;
{
  $Rex::Virtualization::Docker::start::VERSION = '0.54.3';
}

use strict;
use warnings;

use Rex::Logger;
use Rex::Helper::Run;

sub execute {
  my ( $class, $arg1, %opt ) = @_;

  unless ($arg1) {
    die("You have to define the container name!");
  }

  my $dom = $arg1;
  Rex::Logger::debug("starting container $dom");

  unless ($dom) {
    die("VM $dom not found.");
  }

  i_run "docker start \"$dom\"";
  if ( $? != 0 ) {
    die("Error starting container $dom");
  }

}

1;