Quantcast
Viewing latest article 5
Browse Latest Browse All 6

Forward SIGTERM to child in Bash

I have a Bash script, which looks similar to this:

#!/bin/bash
echo "Doing some initial work....";
/bin/start/main/server --nodaemon

Now if the bash shell running the script receives a SIGTERM signal, it should also send a SIGTERM to the running server (which blocks, so no trap possible). Is that possible?


Viewing latest article 5
Browse Latest Browse All 6

Trending Articles