I'm writing a python script that may execute an external bash script. This bash script does something, and after it's done executing, it will kill the python process, and possibly restart the machine.
It is by design that the bash script would kill the python process and restart the machine, but I'm not sure whether it will still continue executing even if it's parent python process dies. Since the machine will restart after the bash script completes, I'm not interested with its output.
Will the bash script still continue running even after the parent python process dies?