summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Hostbase/hostbase/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Hostbase/hostbase/views.py')
-rw-r--r--src/lib/Server/Hostbase/hostbase/views.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/Server/Hostbase/hostbase/views.py b/src/lib/Server/Hostbase/hostbase/views.py
index abb3adf6f..0d15fe106 100644
--- a/src/lib/Server/Hostbase/hostbase/views.py
+++ b/src/lib/Server/Hostbase/hostbase/views.py
@@ -682,20 +682,6 @@ def validate(request, new=False, host_id=None):
and regex.host.match(request.POST['hostname'])):
failures.append('hostname')
- if not regex.printq.match(request.POST['printq']) and request.POST['printq']:
- failures.append('printq')
-
- if not regex.user.match(request.POST['primary_user']):
- failures.append('primary_user')
-
- if (not regex.user.match(request.POST['administrator'])
- and request.POST['administrator']):
- failures.append('administrator')
-
- if not (request.POST['location']
- and regex.location.match(request.POST['location'])):
- failures.append('location')
-
if new:
if (not regex.macaddr.match(request.POST['mac_addr_new'])
and request.POST['mac_addr_new']):