7 lines
206 B
Bash
7 lines
206 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
find /etc/fox-start.d -maxdepth 1 -type f -exec {} \;
|
||
|
echo "Starting cron:"
|
||
|
service cron start
|
||
|
echo "Starting apache:"
|
||
|
bash -c "source /etc/apache2/envvars && exec /usr/sbin/apache2 -DFOREGROUND"
|