diff options
author | Jon Robertson <jonrober@stanford.edu> | 2014-10-08 20:33:56 -0700 |
---|---|---|
committer | Jon Robertson <jonrober@stanford.edu> | 2014-10-08 20:33:56 -0700 |
commit | 34d83c2dd2a17af92e48d74ebfbbfce28c7e8525 (patch) | |
tree | fc2e0275fe249e3ae859eea2a80add7f0badacf3 /perl/lib/Wallet/Admin.pm | |
parent | d5968989923768688b7bd2e4279a9db43a2b93df (diff) |
Split Duo type out into multiple sub-types
The existing functionality is now in the duo-pam object type. The old
duo type now returns output in a generic config file, and new types for
the Duo auth proxy in LDAP and Radius proxies are added.
Change-Id: I1525d79b44dafcf3ef85368297baefafcb5dc179
Diffstat (limited to 'perl/lib/Wallet/Admin.pm')
-rw-r--r-- | perl/lib/Wallet/Admin.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl/lib/Wallet/Admin.pm b/perl/lib/Wallet/Admin.pm index d32a0c2..381ffc9 100644 --- a/perl/lib/Wallet/Admin.pm +++ b/perl/lib/Wallet/Admin.pm @@ -126,6 +126,9 @@ sub default_data { # types default rows. my @record = ([ qw/ty_name ty_class/ ], [ 'duo', 'Wallet::Object::Duo' ], + [ 'duo-pam', 'Wallet::Object::Duo::PAM' ], + [ 'duo-radius', 'Wallet::Object::Duo::RadiusProxy' ], + [ 'duo-ldap', 'Wallet::Object::Duo::LDAPProxy' ], [ 'file', 'Wallet::Object::File' ], [ 'keytab', 'Wallet::Object::Keytab' ], [ 'wa-keyring', 'Wallet::Object::WAKeyring' ]); |