X-Git-Url: https://git.siccegge.de//index.cgi?p=forks%2Fvmdebootstrap.git;a=blobdiff_plain;f=vmdebootstrap;h=93bb2c6bce46b44760450e181cb79d84c16296da;hp=c8fc426c1d8ec295fc150069beb63980a7cdac43;hb=1557f4c63785f46979ca4ce1cbd889c0a680b084;hpb=95bcd705060de5255950ac6c2af39578b077bbf3 diff --git a/vmdebootstrap b/vmdebootstrap index c8fc426..93bb2c6 100755 --- a/vmdebootstrap +++ b/vmdebootstrap @@ -237,7 +237,7 @@ class VmDebootstrap(cliapp.Application): self.runcmd(['chroot', rootdir, 'passwd', '-l', 'root']) else: self.message('Give root an empty password') - self.runcmd(['chroot', rootdir, 'passwd', '-d', 'root']) + self.delete_password(rootdir, 'root') def create_users(self, rootdir): def create_user(user): @@ -253,11 +253,15 @@ class VmDebootstrap(cliapp.Application): self.set_password(rootdir, user, password) else: create_user(userpass) + self.delete_password(rootdir, userpass) def set_password(self, rootdir, user, password): encrypted = crypt.crypt(password, '..') self.runcmd(['chroot', rootdir, 'usermod', '-p', encrypted, user]) + def delete_password(self, rootdir, user): + self.runcmd(['chroot', rootdir, 'passwd', '-d', user]) + def remove_udev_persistent_rules(self, rootdir): self.message('Removing udev persistent cd and net rules') for x in ['70-persistent-cd.rules', '70-persistent-net.rules']: