2016-06-09 15:43:46 +00:00
|
|
|
use base "anacondatest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
2017-01-18 07:15:44 +00:00
|
|
|
use anaconda;
|
2016-06-09 15:43:46 +00:00
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
# iscsi config hash
|
|
|
|
my %iscsi;
|
2020-07-17 20:42:48 +00:00
|
|
|
$iscsi{'iqn.2016-06.local.domain:support.target1'} = ['172.16.2.110', 'test', 'weakpassword'];
|
2016-06-09 15:43:46 +00:00
|
|
|
# Anaconda hub
|
|
|
|
# Go to INSTALLATION DESTINATION and ensure one regular disk
|
|
|
|
# and the iscsi target are selected.
|
2017-01-18 07:15:44 +00:00
|
|
|
select_disks(iscsi=>\%iscsi);
|
2016-06-09 15:43:46 +00:00
|
|
|
assert_and_click "anaconda_spoke_done";
|
|
|
|
# now we're at custom part. let's use standard partitioning for
|
|
|
|
# simplicity
|
2017-01-18 07:15:44 +00:00
|
|
|
custom_scheme_select("standard");
|
2016-06-09 15:43:46 +00:00
|
|
|
# Do 'automatic' partition creation
|
|
|
|
assert_and_click "anaconda_part_automatic";
|
|
|
|
# Make sure / is on the iSCSI target (which appears as sda)
|
2017-01-18 07:15:44 +00:00
|
|
|
custom_change_device("root", "sda");
|
2016-06-09 15:43:46 +00:00
|
|
|
assert_and_click "anaconda_spoke_done";
|
|
|
|
assert_and_click "anaconda_part_accept_changes";
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|