Remove reference to very unlikely service examples that are not

currently kerberized (and may never be due to their nature).
This commit is contained in:
Simo Sorce
2008-09-17 11:09:39 -04:00
parent 8683c23e9d
commit bc70a5146f
2 changed files with 1 additions and 7 deletions

View File

@@ -32,14 +32,11 @@ service/fully\-qualified\-hostname
The list of possible services is too extensive to list here but a short list is:
cifs
dhcp
dns
host
HTTP
ldap
nfs
rpc
snmp
The IPA server automatically appends the Kerberos realm for which it is configured. You cannot specify a different realm.

View File

@@ -26,15 +26,12 @@ class PrincipalFields(object):
label="Service Type",
options = [
("cifs", "cifs"),
("dhcp", "dhcp"),
("dns", "dns"),
("host", "host"),
("HTTP", "HTTP"),
("ldap", "ldap"),
("nfs", "nfs"),
("other", "other"),
("rpc", "rpc"),
("snmp", "snmp")
("other", "other")
],
attrs=dict(onchange="toggleOther(this.id)"))
other = widgets.TextField(name="other", label="Other Service", attrs=dict(size=10))