Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-22 20:13:59 +0200
committerAnton Hvornum <anton@hvornum.se>2021-05-22 20:13:59 +0200
commitd0a37843aa2bf71f1d8eaa6cbd590aaa1a35e0bf (patch)
tree07b28e2f59716f2bbabee6f7d8c052043bbaebae /examples
parent1e53f4a65f8eb5f34953006e0cdf5502a89e89c7 (diff)
Rephrased according to @dylan's suggestions.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 69561bfe..e60cd0f8 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -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():