taler-deployment

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

commit 41d8cfb3ee30560e968a8da751dc1eb952879899
parent 18e8fc65bab5498ff296b9e7959565d5790ca181
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 30 Jan 2018 02:23:05 +0100

squelch ulimit error

Diffstat:
Mbin/taler-deployment-restart | 3++-
Mbin/taler-deployment-start | 3++-
Mbin/taler-deployment-stop | 3++-
3 files changed, 6 insertions(+), 3 deletions(-)

diff --git 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 @@ -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 @@ -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