From f800d44b2dbe78fb3bfcd1d593aeff7c5df51819 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Mon, 16 Mar 2020 11:14:33 +0100 Subject: New function: create_user(). Simple user creations, not many options for now. --- archinstall.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'archinstall.py') diff --git a/archinstall.py b/archinstall.py index f27e6686..994ecfe0 100644 --- a/archinstall.py +++ b/archinstall.py @@ -1209,6 +1209,16 @@ def run_post_install_steps(*positionals, **kwargs): return True +def create_user(username, password='', groups=[]): + if username: + o = (f'/usr/bin/arch-chroot /mnt useradd -m -G wheel {username}') + if password: + o = (f"/usr/bin/arch-chroot /mnt sh -c \"echo '{username}:{password}' | chpasswd\"") + if groups: + for group in groups: + o = (f'/usr/bin/arch-chroot /mnt gpasswd -a {username} {group}') + return True + if __name__ == '__main__': ## Setup some defaults # (in case no command-line parameters or netdeploy-params were given) @@ -1430,8 +1440,7 @@ if __name__ == '__main__': set_password(user='root', password=args['password']) time.sleep(5) if 'user' in args: - o = ('/usr/bin/arch-chroot /mnt useradd -m -G wheel {user}'.format(**args)) - o = ("/usr/bin/arch-chroot /mnt sh -c \"echo '{user}:{pin}' | chpasswd\"".format(**args, pin=args['password'])) + create_user(args['user'], args['password'])#, groups=['wheel']) print('[N] Running post installation steps.') run_post_install_steps() -- cgit v1.2.3-70-g09d2