7 lines
80 B
Bash
7 lines
80 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
/opt/bin/overflow_gateway_app -config=/opt/config/
|
||
|
|
||
|
exec "$@"
|