pep8 fixes

This commit is contained in:
Scott Moser 2012-08-22 22:40:40 -04:00
parent f197acfc67
commit 1b70b4e757

View File

@ -67,12 +67,11 @@ class Distro(object):
home="/home/%s" % user,
shell="/bin/bash",
lockpasswd=True,
gecos="%s%s" % (user[0:1].upper(),user[1:]),
gecos="%s%s" % (user[0:1].upper(), user[1:]),
sudo="ALL=(ALL) NOPASSWD:ALL")
LOG.info("Added default '%s' user with passwordless sudo", user)
@abc.abstractmethod
def install_packages(self, pkglist):
raise NotImplementedError()