mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 09:57:41 +00:00
Test the -b option when converting from LDIF.
This commit is contained in:
parent
e1392cd28a
commit
48f74db604
2
MANIFEST
2
MANIFEST
@ -422,6 +422,8 @@ plugins/sudoers/regress/cvtsudoers/test20.sh
|
|||||||
plugins/sudoers/regress/cvtsudoers/test21.conf
|
plugins/sudoers/regress/cvtsudoers/test21.conf
|
||||||
plugins/sudoers/regress/cvtsudoers/test21.out.ok
|
plugins/sudoers/regress/cvtsudoers/test21.out.ok
|
||||||
plugins/sudoers/regress/cvtsudoers/test21.sh
|
plugins/sudoers/regress/cvtsudoers/test21.sh
|
||||||
|
plugins/sudoers/regress/cvtsudoers/test22.out.ok
|
||||||
|
plugins/sudoers/regress/cvtsudoers/test22.sh
|
||||||
plugins/sudoers/regress/cvtsudoers/test3.out.ok
|
plugins/sudoers/regress/cvtsudoers/test3.out.ok
|
||||||
plugins/sudoers/regress/cvtsudoers/test3.sh
|
plugins/sudoers/regress/cvtsudoers/test3.sh
|
||||||
plugins/sudoers/regress/cvtsudoers/test4.out.ok
|
plugins/sudoers/regress/cvtsudoers/test4.out.ok
|
||||||
|
31
plugins/sudoers/regress/cvtsudoers/test22.out.ok
Normal file
31
plugins/sudoers/regress/cvtsudoers/test22.out.ok
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
dn: cn=defaults,ou=SUDOers,dc=sudo,dc=ws
|
||||||
|
objectClass: top
|
||||||
|
objectClass: sudoRole
|
||||||
|
cn: defaults
|
||||||
|
description: Default sudoOption's go here
|
||||||
|
sudoOption: log_output
|
||||||
|
|
||||||
|
dn: cn=root,ou=SUDOers,dc=sudo,dc=ws
|
||||||
|
objectClass: top
|
||||||
|
objectClass: sudoRole
|
||||||
|
cn: root
|
||||||
|
sudoUser: root
|
||||||
|
sudoHost: ALL
|
||||||
|
sudoRunAsUser: ALL
|
||||||
|
sudoRunAsGroup: ALL
|
||||||
|
sudoOption: !authenticate
|
||||||
|
sudoCommand: ALL
|
||||||
|
sudoOrder: 10
|
||||||
|
|
||||||
|
dn: cn=%wheel,ou=SUDOers,dc=sudo,dc=ws
|
||||||
|
objectClass: top
|
||||||
|
objectClass: sudoRole
|
||||||
|
cn: %wheel
|
||||||
|
sudoUser: %wheel
|
||||||
|
sudoHost: +sudo-hosts
|
||||||
|
sudoRunAsUser: ALL
|
||||||
|
sudoRunAsGroup: ALL
|
||||||
|
sudoOption: !authenticate
|
||||||
|
sudoCommand: ALL
|
||||||
|
sudoOrder: 20
|
||||||
|
|
72
plugins/sudoers/regress/cvtsudoers/test22.sh
Executable file
72
plugins/sudoers/regress/cvtsudoers/test22.sh
Executable file
@ -0,0 +1,72 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Test LDAP base filtering.
|
||||||
|
#
|
||||||
|
|
||||||
|
exec 2>&1
|
||||||
|
./cvtsudoers -c "" -i ldif -b "ou=SUDOers,dc=sudo,dc=ws" -I 10 -O 10 <<EOF
|
||||||
|
dn: dc=sudo,dc=ws
|
||||||
|
objectClass: dcObject
|
||||||
|
objectClass: organization
|
||||||
|
dc: courtesan
|
||||||
|
o: Sudo World Headquarters
|
||||||
|
description: Sudo World Headquarters
|
||||||
|
|
||||||
|
# Organizational Role for Directory Manager
|
||||||
|
dn: cn=Manager,dc=sudo,dc=ws
|
||||||
|
objectClass: organizationalRole
|
||||||
|
cn: Manager
|
||||||
|
description: Directory Manager
|
||||||
|
|
||||||
|
# SUDOers, sudo.ws
|
||||||
|
dn: ou=SUDOers,dc=sudo,dc=ws
|
||||||
|
objectClass: top
|
||||||
|
objectClass: organizationalUnit
|
||||||
|
description: SUDO Configuration Subtree
|
||||||
|
ou: SUDOers
|
||||||
|
|
||||||
|
# defaults, SUDOers, sudo.ws
|
||||||
|
dn: cn=defaults,ou=SUDOers,dc=sudo,dc=ws
|
||||||
|
objectClass: top
|
||||||
|
objectClass: sudoRole
|
||||||
|
cn: defaults
|
||||||
|
description: Default sudoOption's go here
|
||||||
|
sudoOption: log_output
|
||||||
|
|
||||||
|
# root, SUDOers, sudo.ws
|
||||||
|
dn: cn=root,ou=SUDOers,dc=sudo,dc=ws
|
||||||
|
objectClass: top
|
||||||
|
objectClass: sudoRole
|
||||||
|
cn: root
|
||||||
|
sudoUser: root
|
||||||
|
sudoRunAsUser: ALL
|
||||||
|
sudoRunAsGroup: ALL
|
||||||
|
sudoHost: ALL
|
||||||
|
sudoCommand: ALL
|
||||||
|
sudoOption: !authenticate
|
||||||
|
sudoOrder: 10
|
||||||
|
|
||||||
|
# %wheel, SUDOers, sudo.ws
|
||||||
|
dn: cn=%wheel,ou=SUDOers,dc=sudo,dc=ws
|
||||||
|
objectClass: top
|
||||||
|
objectClass: sudoRole
|
||||||
|
cn: %wheel
|
||||||
|
sudoUser: %wheel
|
||||||
|
sudoRunAsUser: ALL
|
||||||
|
sudoRunAsGroup: ALL
|
||||||
|
sudoHost: +sudo-hosts
|
||||||
|
sudoCommand: ALL
|
||||||
|
sudoOption: !authenticate
|
||||||
|
sudoOrder: 10
|
||||||
|
|
||||||
|
# millert, SUDOers, other-domain.com
|
||||||
|
dn: cn=millert,ou=SUDOers,dc=other-domain,dc=com
|
||||||
|
objectClass: top
|
||||||
|
objectClass: sudoRole
|
||||||
|
cn: millert
|
||||||
|
sudoUser: millert
|
||||||
|
sudoRunAsUser: ALL
|
||||||
|
sudoRunAsGroup: ALL
|
||||||
|
sudoHost: ALL
|
||||||
|
sudoOrder: 5
|
||||||
|
EOF
|
Loading…
x
Reference in New Issue
Block a user