gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-deployment] branch master updated: fix permissions


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: fix permissions
Date: Tue, 06 Mar 2018 17:07:29 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new e6d2065  fix permissions
e6d2065 is described below

commit e6d20651b7a153a158221c0f26bad0f2be1ba08d
Author: Florian Dold <address@hidden>
AuthorDate: Tue Mar 6 17:07:09 2018 +0100

    fix permissions
---
 bin/taler-deployment-config-sign | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/bin/taler-deployment-config-sign b/bin/taler-deployment-config-sign
index 1f699eb..dcde148 100755
--- a/bin/taler-deployment-config-sign
+++ b/bin/taler-deployment-config-sign
@@ -7,5 +7,9 @@ base=$HOME
 export PATH="$base/deployment":$PATH
 
 for f in ~/shared-data/exchange/wire/*.unsigned.json; do
-  taler-exchange-wire -j "$(<"$f")" > "${f%.unsigned.json}.json"
+  outf="${f%.unsigned.json}.json"
+  taler-exchange-wire -j "$(<"$f")" > "$outf"
+  # make sure both *-blue and *-green can write to it,
+  # even when e.g. umask is messed up
+  chmod g+w "$outf"
 done

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]