Files
romm/docker/init_scripts/init
2023-03-17 12:25:06 +01:00

12 lines
144 B
Bash
Executable File

#!/bin/bash
/init_back &
/init_front &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?