taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 52d16edbb00114d265e2e94a9c3004a7ed186e84
parent 35a54e7528caeea4a772c0a8f595e4274cead791
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 23 Dec 2019 23:48:04 +0100

quick fix for Marcello's chmod

Diffstat:
Mbin/taler-deployment-keyup | 9+++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup @@ -104,9 +104,14 @@ taler-exchange-keyup \ # or-ing with true as user A won't be able to # change permissions for user B's files. -chmod -R 440 $EXCHANGE_LIVE_KEYS/* || true -chmod -R 440 $EXCHANGE_WIREFEES/* || true +# MARCELLO: this BREAKS stuff badly, as you are +# removing the 'x' from directories, making them +# unreadable! Do not use -R so blindly, this +# MUST only be done on files! +#chmod -R 440 $EXCHANGE_LIVE_KEYS/* || true + +#chmod -R 440 $EXCHANGE_WIREFEES/* || true taler-auditor-exchange \ -m $EXCHANGE_PUB \