Alternative method for user creation

main
Mateus Melchiades 1 year ago
parent e8885a144d
commit 35015ff864

@ -19,7 +19,6 @@
import sys import sys
import time import time
import re, subprocess, shutil import re, subprocess, shutil
import crypt
from gi.repository import Gtk, Gio, GLib, Adw from gi.repository import Gtk, Gio, GLib, Adw
@ -67,7 +66,8 @@ class VanillaDefaultUser(Adw.Bin):
"if": "create", "if": "create",
"type": "command", "type": "command",
"commands": [ "commands": [
f"useradd -m {self.username} -c \"{self.fullname}\" -G sudo,adm,lpadmin -p {crypt.crypt(self.password_entry.get_text())}", f"adduser --quiet --disabled-password --shell /bin/bash --gecos \"{self.fullname}\" {self.username}",
f"echo \"{self.username}:{self.password_entry.get_text()}\" | chpasswd"
] ]
} }
] ]

Loading…
Cancel
Save