10 lines
159 B
Bash
10 lines
159 B
Bash
#!/bin/bash
|
|
|
|
#auto configs
|
|
if ! [ -f /root/init/init ]
|
|
then /root/auto_config.sh
|
|
fi
|
|
cd /root/synapse
|
|
source /root/env/bin/activate
|
|
synctl start --no-daemonize
|