Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
b8569b2b
Commit
b8569b2b
authored
24 years ago
by
Randy Kunkee
Browse files
Options
Downloads
Patches
Plain Diff
Grep for PRNG message in $SEARCHOUT to make sure error is caught.
parent
84583b64
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/scripts/test000-rootdse
+12
-1
12 additions, 1 deletion
tests/scripts/test000-rootdse
with
12 additions
and
1 deletion
tests/scripts/test000-rootdse
+
12
−
1
View file @
b8569b2b
...
...
@@ -41,7 +41,18 @@ cat $SEARCHOUT
if
test
$RC
!=
0
;
then
echo
">>>>> Test failed"
else
echo
">>>>> Test succeeded"
if
grep
PRNG
$SEARCHOUT
;
then
cat
<<
EOF
You need a pseudo random number generator, such as a /dev/urandom,
/dev/urandom, or an entropy gathering daemon. Alternatively, you
can use openssl to generate a
$HOME
/.rnd file.
See www.openssl.org for more details on how to do this.
EOF
RC
=
-1
else
echo
">>>>> Test succeeded"
fi
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment