#!/bin/sh trap cleanup SIGTERM EXIT cleanup() { pkill -2 mongod } exec "/usr/bin/mongod" "$@" & wait