16 lines
257 B
Perl
16 lines
257 B
Perl
package Bootstrap::Step::Updates;
|
|
use Bootstrap::Step;
|
|
@ISA = ("Bootstrap::Step");
|
|
|
|
sub Execute {
|
|
my $this = shift;
|
|
$this->Shell('cmd' => 'echo updates');
|
|
}
|
|
|
|
sub Verify {
|
|
my $this = shift;
|
|
$this->Shell('cmd' => 'echo Verify updates');
|
|
}
|
|
|
|
1;
|