9 lines
151 B
Bash
9 lines
151 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
|
|
# Start Apache in the foreground
|
|
apache2ctl -D FOREGROUND &
|
|
|
|
# Run restart.py in the foreground
|
|
python3 /var/www/python/restart.py |