ktest: Fix post install command
The command to run post install (for those that want initrds) was broken. Instead of doing a substitution for the $KERNEL_VERSION variable. It was replacing the entire command with nothing. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
committed by
Steven Rostedt
parent
61c4f2c81c
commit
ca6a21f874
@@ -907,7 +907,7 @@ sub install {
|
|||||||
return if (!defined($post_install));
|
return if (!defined($post_install));
|
||||||
|
|
||||||
my $cp_post_install = $post_install;
|
my $cp_post_install = $post_install;
|
||||||
$cp_post_install = s/\$KERNEL_VERSION/$version/g;
|
$cp_post_install =~ s/\$KERNEL_VERSION/$version/g;
|
||||||
run_command "$cp_post_install" or
|
run_command "$cp_post_install" or
|
||||||
dodie "Failed to run post install";
|
dodie "Failed to run post install";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user