| 61 | } |
| 62 | |
| 63 | Status MiniKdcWrapper::CreateUserPrincipal(const string& username) { |
| 64 | KUDU_RETURN_IF_ERROR(kdc_->CreateUserPrincipal(username), |
| 65 | "Failed to create user principal."); |
| 66 | return Status::OK(); |
| 67 | } |
| 68 | |
| 69 | Status MiniKdcWrapper::CreateServiceKeytab(const string& spn, string* kt_path) { |
| 70 | KUDU_RETURN_IF_ERROR(kdc_->CreateServiceKeytab(spn, kt_path), |