1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
package Rex::Virtualization::Docker::delete;
use v5.14.4;
use warnings;
our $VERSION = '1.16.1'; # VERSION
use Rex::Logger;
use Rex::Helper::Run;
sub execute {
my ( $class, $arg1, %opt ) = @_;
unless ($arg1) {
die("You have to define the container ID!");
}
my $dom = $arg1;
Rex::Logger::debug("deleteing container $dom");
unless ($dom) {
die("VM $dom not found.");
}
i_run "docker rm \"$dom\"", fail_ok => 1;
if ( $? != 0 ) {
die("Error deleteing container $dom");
}
}
1;
|