Add generic node.sh to run node apps as root and with memory limitations

This commit is contained in:
Johannes Zellner
2017-04-20 15:12:43 +02:00
parent 8ded006dea
commit a94d44da75
3 changed files with 27 additions and 4 deletions

22
src/scripts/node.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
set -eu -o pipefail
if [[ ${EUID} -ne 0 ]]; then
echo "This script should be run as root." > /dev/stderr
exit 1
fi
if [[ $# -eq 0 ]]; then
echo "No arguments supplied"
exit 1
fi
if [[ "$1" == "--check" ]]; then
echo "OK"
exit 0
fi
echo "Running node with memory constraints"
/usr/bin/node --max_old_space_size=150 "$@"