aboutsummaryrefslogtreecommitdiff
path: root/perl/Wallet/Object/Keytab.pm
diff options
context:
space:
mode:
authorJon Robertson <jonrober@stanford.edu>2010-01-21 20:53:20 -0800
committerJon Robertson <jonrober@stanford.edu>2010-01-21 21:17:16 -0800
commit854063db2095fac8079260b414714d239221fdff (patch)
treef363307f6a503f1cd7b9cdce12afd09ade8b718a /perl/Wallet/Object/Keytab.pm
parent42ff8edd0059988c5fa9af98ead4c19b3b52b37a (diff)
Removed valid_principal as a Kadmin API function
valid_principal has been removed from Wallet::Kadmin and Wallet::Kadmin::Heimdal. An accessor for it in Wallet::Object::Keytab has also been removed, as have the tests in perl/t/keytab.t for the function. It still remains within Wallet::Kadmin::MIT and is used there, but only as a private method for flagging what the kadmin command-line interface cannot handle.
Diffstat (limited to 'perl/Wallet/Object/Keytab.pm')
-rw-r--r--perl/Wallet/Object/Keytab.pm9
1 files changed, 1 insertions, 8 deletions
diff --git a/perl/Wallet/Object/Keytab.pm b/perl/Wallet/Object/Keytab.pm
index a361599..092e973 100644
--- a/perl/Wallet/Object/Keytab.pm
+++ b/perl/Wallet/Object/Keytab.pm
@@ -24,7 +24,7 @@ use Wallet::Kadmin;
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.06';
+$VERSION = '0.07';
##############################################################################
# AFS kaserver synchronization
@@ -490,13 +490,6 @@ sub create {
return $self;
}
-# Provides wrapper to individual Kadmin class's valid_principal. Here only
-# to help expose for testing.
-sub valid_principal {
- my ($self, $principal) = @_;
- return Wallet::Kadmin->valid_principal ($principal);
-}
-
# Override destroy to delete the principal out of Kerberos as well.
sub destroy {
my ($self, $user, $host, $time) = @_;