generate docker root password in a way that doesn't hang

This commit is contained in:
Chris St. Pierre 2014-03-28 11:19:36 -04:00
parent 8bfcb00337
commit 0cd74eff38

View File

@ -66,7 +66,7 @@ reboot
%post
# randomize root password and lock root account
tr -cd '[:alnum:]' < /dev/urandom | fold -w30 | head -n1 | passwd --stdin root
dd if=/dev/urandom count=50 | md5sum | passwd --stdin root
passwd -l root
# cleanup unwanted stuff