Added instalation as service

This commit is contained in:
Lukáš Plevač 2023-12-29 09:35:40 +01:00
parent d45640a4fc
commit 7188f67683
3 changed files with 28 additions and 3 deletions

2
install.sh Normal file → Executable file
View File

@ -38,7 +38,7 @@ git clone https://github.com/Hamlib/Hamlib
cd Hamlib
./bootstrap
./configure
./configure --prefix=/usr/local --enable-static
make
make install

View File

@ -1,6 +1,18 @@
install:
apt install -f libopenblas-dev
pip3 install matplotlib
pip3 install numpy
pip3 install pyorbital
pip3 install pyserial
cp tools/baseband_spectogram.py /usr/local/bin/
chmod +x /usr/local/bin/baseband_spectogram.py
cp tools/cw_morse.py /usr/local/bin/
chmod +x /usr/local/bin/cw_morse.py
chmod +x /usr/local/bin/cw_morse.py
rm -rf /YAGS
mkdir /YAGS
sudo cp -r * /YAGS/
cp -f yags.service /etc/systemd/system/
systemctl daemon-reload

13
station/yags.service Normal file
View File

@ -0,0 +1,13 @@
[Unit]
Description=YAGS ground station client
After=syslog.target network.target
[Service]
WorkingDirectory=/YAGS/
ExecStart=/usr/bin/python3 main.py
Restart=always
RestartSec=120
[Install]
WantedBy=multi-user.target