summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-10-24 14:17:20 -0400
committerRob Crittenden <rcritten@redhat.com>2008-10-24 14:17:20 -0400
commit34520981eeaac5d4f37915509a9e26428e26f5c0 (patch)
treecb1e7c161faeb2c6a73171218a4377c77d5d278b /ipalib/errors.py
parent8788afe18403e7585e4fc2b6a52a352a035fee0b (diff)
downloadfreeipa-34520981eeaac5d4f37915509a9e26428e26f5c0.tar.gz
freeipa-34520981eeaac5d4f37915509a9e26428e26f5c0.tar.xz
freeipa-34520981eeaac5d4f37915509a9e26428e26f5c0.zip
Don't allow service-add to create host/ principals
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index 9c40981ff..c2d83e73b 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -356,6 +356,10 @@ class DefaultGroup(ConfigurationError):
"""You cannot remove the default users group"""
faultCode = 1025
+class HostService(ConfigurationError):
+ """You must enroll a host in order to create a host service"""
+ faultCode = 1026
+
class FunctionDeprecated(GenericError):
"""Raised by a deprecated function"""
faultCode = 2000