diff options
author | Dave Brolley <brolley@redhat.com> | 2009-01-28 17:32:03 -0500 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-01-28 17:32:03 -0500 |
commit | cbac7162a67d401506a35757b057aae43bf79e73 (patch) | |
tree | 7b3bd088a66965629b38d4234975015d6e4658d5 /stap-add-server-cert | |
parent | 078198eb01e89d1b79ae96203525d59945f68067 (diff) | |
download | systemtap-steved-cbac7162a67d401506a35757b057aae43bf79e73.tar.gz systemtap-steved-cbac7162a67d401506a35757b057aae43bf79e73.tar.xz systemtap-steved-cbac7162a67d401506a35757b057aae43bf79e73.zip |
Check client side certificate database security.
Diffstat (limited to 'stap-add-server-cert')
-rwxr-xr-x | stap-add-server-cert | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stap-add-server-cert b/stap-add-server-cert index 976f323f..5e075725 100755 --- a/stap-add-server-cert +++ b/stap-add-server-cert @@ -26,7 +26,7 @@ if test "X$2" = "X"; then exit 1 fi if ! test -d $2/client; then - if ! mkdir -p $2/client; then + if ! mkdir -p -m 755 $2/client; then echo "Unable to find or create the client certificate database directory: $2/client" >&2 exit 1 fi |