Deamon installation described

This commit is contained in:
Ollo 2023-09-22 22:11:46 +02:00
parent dd860166fd
commit e4a1788698
3 changed files with 43 additions and 0 deletions

View File

@ -25,3 +25,17 @@ stored in folder **/client**
go to **/client**
* cargo build
* cargo run
### Deamon
Requires ''systemd''
Install by creating a link to this project
```
/etc/systemd/system# ln -s /home/c3ma/led-board/client/ledBoard.service ledBoard.service
systemctl daemon-reload
systemctl enable ledBoard.service
```
Start deamon with
```
systemctl start ledBoard.service
```

17
client/ledBoard.service Normal file
View File

@ -0,0 +1,17 @@
[Unit]
Description=Log uptime in scoreboard
DefaultDependencies=no
[Service]
Type=simple
Restart=on-failure
User=c3ma
# Specify users home as working directory
WorkingDirectory=/home/c3ma/
# Define wrapper to update and start project
ExecStart=/usr/bin/bash <project home>/client/ledboard.sh
TimeoutStartSec=0
[Install]
WantedBy=network.target

12
client/ledboard.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
# Wrapper script to update project and build project
#
#Set target IP address
IP=
# Path to this project
HOSTCLIENT=
cd $HOSTCLIENT
/usr/bin/pkill LEDboardClient
git pull
cargo build
$HOSTCLIENT/target/debug/LEDboardClient $IP