taler-deployment

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

commit 925c6931408091643e3e79f00151cdac9aade9de
parent 7e014ace9556824e3640fe295eb32127526e564d
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 21 Apr 2020 17:56:25 +0530

adjust permissions

Diffstat:
Mbin/taler-deployment-prepare | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare @@ -125,3 +125,17 @@ case $TALER_ENV_NAME in echo "Not setting unsafe Exchange bank account password for env $TALER_ENV_NAME" ;; esac + + +## +## Step 5: Adjust some permissions +## + +case $TALER_ENV_NAME in + demo|test|int) + # Make sure the web server can read ~/local + chmod og+r ~/local + ;; + *) + ;; +esac