8 lines
180 B
Bash
Executable File
8 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
sudo /etc/init.d/postgresql start
|
|
sudo /etc/init.d/apache2 start
|
|
test -f /var/run/supervisor.* && sudo rm /var/run/supervisor.*
|
|
sudo /etc/init.d/supervisor start
|