Rephrased according to @dylan's suggestions.
This commit is contained in:
parent
1e53f4a65f
commit
d0a37843aa
|
|
@ -239,9 +239,9 @@ def ask_user_questions():
|
|||
|
||||
if archinstall.arguments['timezone']:
|
||||
if not archinstall.arguments.get('ntp', False):
|
||||
archinstall.arguments['ntp'] = input("Would you like to use automatic time syncronization (ntp) with default time servers? N/y: ").strip().lower() in ('y', 'yes')
|
||||
archinstall.arguments['ntp'] = input("Would you like to use automatic time synchronization (NTP) with the default time servers? [Y/n]: ").strip().lower() in ('y', 'yes')
|
||||
if archinstall.arguments['ntp']:
|
||||
archinstall.log("Hardware time and other post configuration might be required for ntp to work. Please see wiki!", fg="yellow")
|
||||
archinstall.log("Hardware time and other post-configuration steps might be required in order for NTP to work. For more information, please check the Arch wiki.", fg="yellow")
|
||||
|
||||
|
||||
def perform_installation_steps():
|
||||
|
|
|
|||
Loading…
Reference in New Issue