summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/stanford.conf7
1 files changed, 1 insertions, 6 deletions
diff --git a/examples/stanford.conf b/examples/stanford.conf
index 78e9429..05ca861 100644
--- a/examples/stanford.conf
+++ b/examples/stanford.conf
@@ -37,11 +37,6 @@ $KEYTAB_TMP = '/var/lib/wallet';
$KEYTAB_REMCTL_CACHE = '/var/lib/wallet/krb5cc_wallet';
$KEYTAB_REMCTL_HOST = 'kerberos1.stanford.edu';
-$KEYTAB_AFS_ADMIN = 'service.wallet@IR.STANFORD.EDU';
-$KEYTAB_AFS_DESTROY = 1;
-$KEYTAB_AFS_REALM = 'IR.STANFORD.EDU';
-$KEYTAB_AFS_SRVTAB = '/etc/wallet/srvtab';
-
$NETDB_REALM = 'stanford.edu';
$NETDB_REMCTL_CACHE = '/var/lib/wallet/krb5cc_wallet';
$NETDB_REMCTL_HOST = 'netdb-node-roles-rc.stanford.edu';
@@ -125,7 +120,7 @@ sub verify_name {
# Check keytab naming conventions.
if ($type eq 'keytab') {
if ($name !~ m,^[a-zA-Z0-9_-]+/[a-z0-9.-]+$,) {
- return "invalid princial name $name";
+ return "invalid principal name $name";
}
my ($principal, $instance)
= ($name =~ m,^([a-zA-Z0-9_-]+)/([a-z0-9.-]+)$,);