repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s3: smbd: Duplicate smb_file_link_information() hardlink handling as smb2_file_link_i...
[Samba.git]
/
selftest
/
checkpassword_arg1.sh
blob
ecaeb2ed374900bca437ba759e3c1ffbe2792781
1
#!/bin/sh
2
#
3
4
set -e
5
set -u
6
7
ACCOUNT_NAME
=
"
${SAMBA_CPS_ACCOUNT_NAME}
"
8
INVALIDPW
=
"
$1
"
9
NEWPW
=
$
(
cat
-)
10
11
echo -n
"
${NEWPW}
"
|
grep
-q
"^
${INVALIDPW}
\$"
&& {
12
echo
"Found invalid password"
>&
1
13
exit
1
14
}
15
16
echo -n
"
${NEWPW}
"
|
grep
-q
"^
${ACCOUNT_NAME}
\$"
&& {
17
echo
"Password includes ACCOUNT_NAME"
>&
1
18
exit
1
19
}
20
21
exit
0