mirror of
https://github.com/laurivosandi/certidude
synced 2024-12-22 16:25:17 +00:00
Add 'certidude users' command for listing user accounts
This commit is contained in:
parent
816cf32353
commit
fa27253b50
@ -914,6 +914,16 @@ def certidude_setup_authority(username, static_path, kerberos_keytab, nginx_conf
|
||||
click.echo(" certidude serve")
|
||||
|
||||
|
||||
@click.command("users", help="List users")
|
||||
def certidude_users():
|
||||
from certidude.user import User
|
||||
admins = set(User.objects.filter_admins())
|
||||
for user in User.objects.all():
|
||||
print "%s;%s;%s;%s;%s" % (
|
||||
"admin" if user in admins else "user",
|
||||
user.name, user.given_name, user.surname, user.mail)
|
||||
|
||||
|
||||
@click.command("list", help="List certificates")
|
||||
@click.option("--verbose", "-v", default=False, is_flag=True, help="Verbose output")
|
||||
@click.option("--show-key-type", "-k", default=False, is_flag=True, help="Show key type and length")
|
||||
@ -1167,3 +1177,4 @@ entry_point.add_command(certidude_signer)
|
||||
entry_point.add_command(certidude_request)
|
||||
entry_point.add_command(certidude_sign)
|
||||
entry_point.add_command(certidude_list)
|
||||
entry_point.add_command(certidude_users)
|
||||
|
@ -31,7 +31,7 @@ posix admin group = sudo
|
||||
|
||||
;backend = ldap
|
||||
ldap computer filter = (&(objectclass=user)(objectclass=computer)(samaccountname=%s))
|
||||
ldap user filter = (&(objectclass=user)(objectclass=person)(samaccountname=%s))
|
||||
ldap user filter = (&(objectclass=user)(objectcategory=person)(samaccountname=%s))
|
||||
ldap admin filter = (&(memberOf=cn=Domain Admins,cn=Users,{% if base %}{{ base }}{% else %}dc=example,dc=com{% endif %})(samaccountname=%s))
|
||||
|
||||
# Users are allowed to log in from user subnets
|
||||
|
Loading…
Reference in New Issue
Block a user