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?