2015-11-11 12:44:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-11-11 16:26:37 +01:00
|
|
|
while :
|
|
|
|
do
|
2015-11-26 14:08:28 +01:00
|
|
|
echo "Trying to start Spectrum 2 instances."
|
|
|
|
echo "You should mount the directory with configuration files to /etc/spectrum2/transports/."
|
|
|
|
echo "Check the http://spectrum.im/documentation for more information."
|
|
|
|
spectrum2_manager start
|
|
|
|
tail -f /var/log/spectrum2/*/* 2>/dev/null
|
2015-11-11 16:26:37 +01:00
|
|
|
sleep 2
|
|
|
|
done
|