commit 1889794f88dac0cac98da7d180a617f8750b1091 parent 0d67bb027eb192ee208f9862829f16ff5257f947 Author: Florian Dold <florian.dold@gmail.com> Date: Fri, 8 May 2020 18:22:25 +0530 permissions Diffstat:
| M | bin/taler-deployment-prepare | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare @@ -109,7 +109,6 @@ chmod 750 "$HOME/.config" WIRE_RESPONSE=$(taler-config -s exchange-account-1 -o wire_response -f) taler-exchange-wire -chmod 770 "$WIRE_RESPONSE" ## @@ -135,6 +134,10 @@ case $TALER_ENV_NAME in demo|test|int) # Make sure the web server can read ~/local chmod og+rx ~/local + + # Make sure that shared files created by this user + # are group writable and readable. + find ~/taler-data/ -user "$USER" -exec chmod g+rw {} \; ;; *) ;;