blob: c1a2df359b436e5b9b113af8e35a70ac7391798a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
# Test base64 encoding of non-safe strings
#
: ${CVTSUDOERS=cvtsudoers}
$CVTSUDOERS -c "" -b "ou=SUDOers©,dc=sudo,dc=ws" <<EOF
Defaults badpass_message="Bad password¡"
root ALL = ALL
EOF
|