5 lines
100 B
Bash
Executable file
5 lines
100 B
Bash
Executable file
#!/bin/sh
|
|
if [ ! -f config/server-key.pr ]; then
|
|
./genkey.sh
|
|
fi
|
|
exec syndicate-server -c config
|