Skip to content

Commit

Permalink
Merge pull request os-autoinst#2312 from pevik/ltp-fix-regression
Browse files Browse the repository at this point in the history
LTP: fix installing package providing ifconfig
  • Loading branch information
richiejp committed Jan 13, 2017
2 parents 4d8f4d8 + 0114c3f commit 637926e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/kernel/install_ltp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ sub try_add_workstation_addon {
sub install_dependencies {
my @deps = qw(git-core make automake autoconf gcc libnuma-devel libaio-devel numactl
flex bison dmapi-devel kernel-default-devel libopenssl-devel libselinux-devel
libacl-devel libtirpc-devel keyutils-devel libcap-devel net-tools-deprecated sysstat
libacl-devel libtirpc-devel keyutils-devel libcap-devel net-tools sysstat
tpm-tools tpm2.0-tools psmisc acl quota);
if (check_var('DISTRI', 'opensuse') || try_add_workstation_addon()) {
push @deps, 'ntfsprogs';
Expand All @@ -46,6 +46,8 @@ sub install_dependencies {
record_soft_failure 'Need Workstation Extension for ntfsprogs; poo#15652';
}
zypper_call('in ' . join(' ', @deps), log => 'install-deps.txt');

script_run('zypper -n in net-tools-deprecated');
}

sub install_from_git {
Expand Down

0 comments on commit 637926e

Please sign in to comment.