mirror of
https://github.com/eddyem/small_tel.git
synced 2025-12-06 18:55:20 +03:00
14 lines
362 B
Bash
14 lines
362 B
Bash
#!/bin/bash
|
|
LOGDIR=/var/log/telescope
|
|
|
|
killall teldaemon
|
|
killall domedaemon
|
|
killall stellariumdaemon
|
|
killall -9 teldaemon
|
|
killall -9 domedaemon
|
|
killall -9 stellariumdaemon
|
|
|
|
~/bin/teldaemon -d /dev/ttyS0 -l ${LOGDIR}/teldaemon.log
|
|
~/bin/domedaemon -d /dev/ttyS2 -l ${LOGDIR}/domedaemon.log
|
|
~/bin/stellariumdaemon -d /dev/ttyS1 -l ${LOGDIR}/stellariumdaemon.log
|