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 (39079d8 -> 41d8cf


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated (39079d8 -> 41d8cfb)
Date: Tue, 30 Jan 2018 02:23:12 +0100

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

dold pushed a change to branch master
in repository deployment.

    from 39079d8  use url instead of uri
     new 18e8fc6  remove dead symlink
     new 41d8cfb  squelch ulimit error

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/taler-deployment-restart | 3 ++-
 bin/taler-deployment-start   | 3 ++-
 bin/taler-deployment-stop    | 3 ++-
 bootstrap-bluegreen          | 1 -
 4 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/bin/taler-deployment-restart b/bin/taler-deployment-restart
index a157040..bfa668a 100755
--- a/bin/taler-deployment-restart
+++ b/bin/taler-deployment-restart
@@ -4,7 +4,8 @@ base=$HOME
 
 export PATH="$base/deployment/bin":$PATH
 
-ulimit -c $((100 * 1024))
+# might fail if invoked from another script with ulimit
+ulimit -c $((100 * 1024)) &>/dev/null || true
 
 cd $HOME
 
diff --git a/bin/taler-deployment-start b/bin/taler-deployment-start
index 45a1600..9ceaef6 100755
--- a/bin/taler-deployment-start
+++ b/bin/taler-deployment-start
@@ -4,7 +4,8 @@ base=$HOME
 
 export PATH="$base/deployment":$PATH
 
-ulimit -c $((1000 * 1024))
+# might fail if invoked from another script with ulimit
+ulimit -c $((100 * 1024)) &>/dev/null || true
 
 cd $HOME
 
diff --git a/bin/taler-deployment-stop b/bin/taler-deployment-stop
index d8c1824..e08ee71 100755
--- a/bin/taler-deployment-stop
+++ b/bin/taler-deployment-stop
@@ -4,7 +4,8 @@ base=$HOME
 
 export PATH="$base/deployment":$PATH
 
-ulimit -c $((100 * 1024))
+# might fail if invoked from another script
+ulimit -c $((100 * 1024)) &>/dev/null
 
 cd $HOME
 
diff --git a/bootstrap-bluegreen b/bootstrap-bluegreen
index 05fe504..9c64b19 100755
--- a/bootstrap-bluegreen
+++ b/bootstrap-bluegreen
@@ -96,4 +96,3 @@ export 
TALER_ENV_URL_AUDITOR="https://auditor.$ENVNAME.taler.net/";
 EOL
 
 ln -sf "/home/$ENVNAME/shared-data" "$HOME"
-ln -sf "/home/$ENVNAME/shared-config" "$HOME"

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



reply via email to

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