rjancewicz / python-kadmin

Python module for kerberos admin (kadm5)
MIT License
35 stars 40 forks source link

add principal #30

Closed tedx closed 9 years ago

tedx commented 9 years ago

How would I add a principal with this interface?

rjancewicz commented 9 years ago

kadm.ank(princ, passwd) Or kadm.add_princ(princ, passwd)

They are simply aliases for one another. Please note that setting the passwd value to None Will result in a randomized password.

I'll be sure to update the docs.

-Russell J. Jancewicz

On Apr 25, 2015, at 14:21, Ted X Toth notifications@github.com wrote:

How would I add a principal with this interface?

— Reply to this email directly or view it on GitHub.

tedx commented 9 years ago

Thanks.

rjancewicz commented 9 years ago

The docs have been updated (I had an old branch which needed to be merged).