8 lines
53 B
Bash
8 lines
53 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
echo "Running Apache"
|
||
|
|
||
|
exec $@
|