diff options
author | Dave Brolley <brolley@redhat.com> | 2009-01-13 11:35:14 -0500 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-01-13 11:35:14 -0500 |
commit | a50cb7894f72eb3ac3301adde9950d12425594b7 (patch) | |
tree | 29d4207e6ce35678d501a9b171ff074470ee109e /stap-add-server-cert | |
parent | a4de985a1a9d7f47858abb1e3037a90a2d50dbc4 (diff) | |
download | systemtap-steved-a50cb7894f72eb3ac3301adde9950d12425594b7.tar.gz systemtap-steved-a50cb7894f72eb3ac3301adde9950d12425594b7.tar.xz systemtap-steved-a50cb7894f72eb3ac3301adde9950d12425594b7.zip |
Ensure that the client cert database and server cert are readable by all.
Diffstat (limited to 'stap-add-server-cert')
-rwxr-xr-x | stap-add-server-cert | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stap-add-server-cert b/stap-add-server-cert index 5f17f165..81424c82 100755 --- a/stap-add-server-cert +++ b/stap-add-server-cert @@ -40,9 +40,7 @@ fi # Ensure that the database is readable by others if ! chmod +r $2/*.db; then - echo "Unable to make the client certificate database $2 readable by others" >&2 - exit 1 + echo "Warning: unable to make the client certificate database $2 readable by others" >&2 fi - exit 0 |