Project

General

Profile

action #174367

Updated by leli 6 days ago

#### Motivation 
 Following #/169480 we should Ensure boot after agama installation for virtualization PowerVM in openQA in [SLES 16 job group](https://openqa.suse.de/group_overview/612) 

 [Failed job](https://openqa.suse.de/tests/16178556#step/first_boot/3) 
 We should do different setting for boot media before and after agama installation, before that is live cd boot, after that is normal hdd boot. So just need change condition for boot media, add condition to separate before and after installation. 
 ``` 
 if (get_var('AGAMA')) { 
         type_string_slow "linux $mntpoint/linux vga=normal root=live:http://" . get_var('OPENQA_HOSTNAME') . "/assets/iso/" . get_var('ISO'); 
         type_string_slow " " . get_var('EXTRABOOTPARAMS'); 
     } 
     else { 
         type_string_slow "linux $mntpoint/linux vga=normal $ntlm_p install=$mirror "; 
     } 
 ``` 
   

 #### Acceptance criteria 
 - **AC1**: Ensure boot succeed after agama installation in OSD in PowerVM. 

Back