7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ ! $PERFORM_CHECKS_AND_SETUP == False ]]; then
|
|
./startup_checks.sh && exec ./webserver.sh
|
|
else
|
|
exec ./webserver.sh
|
|
fi |