Fixed set_hostname() default.

This commit is contained in:
Anton Hvornum 2021-04-09 12:28:52 +02:00
parent 276414079b
commit 59e3408de8
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 2 additions and 3 deletions

View File

@ -144,8 +144,7 @@ class Installer():
return True
def set_hostname(self, hostname=None, *args, **kwargs):
if not hostname: hostname = self.hostname
def set_hostname(self, hostname :str, *args, **kwargs):
with open(f'{self.target}/etc/hostname', 'w') as fh:
fh.write(self.hostname + '\n')
@ -290,7 +289,7 @@ class Installer():
#os.remove(f'{self.target}/etc/localtime')
#sys_command(f'/usr/bin/arch-chroot {self.target} ln -s /usr/share/zoneinfo/{localtime} /etc/localtime')
#sys_command('/usr/bin/arch-chroot /mnt hwclock --hctosys --localtime')
self.set_hostname()
self.set_hostname('archinstall')
self.set_locale('en_US')
# TODO: Use python functions for this