X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/7851ddf7c04bce0c49ff70b7a9e75eab9969df7b..66cccc3c93b4cd7d98c14564db63ee9831c4047e:/validation.py diff --git a/validation.py b/validation.py index 07b3f3d..3ed4938 100644 --- a/validation.py +++ b/validation.py @@ -71,8 +71,6 @@ def validAddVm(user): def haveAccess(user, machine): """Return whether a user has administrative access to a machine""" - if user == 'moo': - return True if user in (machine.administrator, machine.owner): return True if getafsgroups.checkAfsGroup(user, machine.administrator, @@ -84,8 +82,6 @@ def haveAccess(user, machine): def owns(user, machine): """Return whether a user owns a machine""" - if user == 'moo': - return True return not getafsgroups.notLockerOwner(user, machine.owner) def validMachineName(name):