diff --git a/README.md b/README.md index fed8aa9..f0d2b43 100644 --- a/README.md +++ b/README.md @@ -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 +``` diff --git a/client/ledBoard.service b/client/ledBoard.service new file mode 100644 index 0000000..bd52c71 --- /dev/null +++ b/client/ledBoard.service @@ -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 /client/ledboard.sh +TimeoutStartSec=0 + +[Install] +WantedBy=network.target diff --git a/client/ledboard.sh b/client/ledboard.sh new file mode 100755 index 0000000..bda922e --- /dev/null +++ b/client/ledboard.sh @@ -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