summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-12-23 23:48:04 +0100
committerChristian Grothoff <christian@grothoff.org>2019-12-23 23:48:04 +0100
commit52d16edbb00114d265e2e94a9c3004a7ed186e84 (patch)
tree13cb61ee2801bdda168846cd4d10ae85585c6381 /bin
parent35a54e7528caeea4a772c0a8f595e4274cead791 (diff)
downloaddeployment-52d16edbb00114d265e2e94a9c3004a7ed186e84.tar.gz
deployment-52d16edbb00114d265e2e94a9c3004a7ed186e84.tar.bz2
deployment-52d16edbb00114d265e2e94a9c3004a7ed186e84.zip
quick fix for Marcello's chmod
Diffstat (limited to 'bin')
-rwxr-xr-xbin/taler-deployment-keyup9
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup
index 76de9c3..ea230fe 100755
--- 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 \