Project

General

Profile

Feature #37581

Updated by Ewoud Kohl van Wijngaarden 4 months ago

The kickstart template uses timezone: 
 <pre> 
 timezone -utc <%= host_param('time-zone') || 'UTC' %> <%= host_param('ntp-server') ? "-ntpservers #{host_param('ntp-server')}" # 

 {host_param('ntp-server')} 

 " : '' %> 
 </pre> 
 But EL 9 uses timesource: 
 <pre> 
 timesource [--ntp-server NTP_SERVER | --ntp-pool NTP_POOL | --ntp-disable] [--nts] 
 </pre> 

 More about the timesource command at https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/performing_an_advanced_rhel_9_installation/kickstart-commands-and-options-reference_installing-rhel-as-an-experienced-user#ref_timesource_kickstart-commands-for-system-configuration

Back