From a2e676261a91302cb32d86c85cb514c0276affc2 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Thu, 20 Aug 2020 12:25:21 +0000 Subject: Added missing function reboot(). Also tweaked the build scripts so that they fetch a common version from the file VERSION. And some spelling tweaks for the log output. --- archinstall/lib/general.py | 2 ++ archinstall/lib/installer.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'archinstall') diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py index 7718f623..e15f9bad 100644 --- a/archinstall/lib/general.py +++ b/archinstall/lib/general.py @@ -258,3 +258,5 @@ def prerequisit_check(): return True +def reboot(): + o = b''.join(sys_command(("/usr/bin/reboot"))) \ No newline at end of file diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index a6fafb03..5b72ca66 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -92,7 +92,7 @@ class Installer(): return True def activate_ntp(self): - log(f'Adding bootloader to {self.boot_partition}') + log(f'Installing and activating NTP.') if self.pacstrap('ntp'): if self.enable_service('ntpd'): return True -- cgit v1.2.3-54-g00ecf