10 lines
100 B
Bash
Executable File
10 lines
100 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -n "$WORKER" ]; then
|
|
automatisch start-worker
|
|
else
|
|
automatisch start
|
|
fi
|