Compare commits

..

No commits in common. "663b7205ce3cb8cd1424f8531a434a418b446df3" and "e86f03d4f22eab69009f8c0536c4a906a90af662" have entirely different histories.

1 changed files with 63 additions and 67 deletions

View File

@ -26,21 +26,17 @@ mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=Release .. cmake -DCMAKE_BUILD_TYPE=Release ..
make make
sudo cp libicsneo-socketcan-daemon /usr/sbin/ sudo echo << EOF > /etc/systemd/system/icsscand.service
echo << EOF > icsscand.service
[Unit] [Unit]
Description=Intrepid Device Scanner Description=Intrepid Device Scanner
[Service] [Service]
ExecStart=/usr/sbin/libicsneo-socketcan-daemon ExecStart=/home/sven/icsscand/build/libicsneo-socketcan-daemon
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target
EOF EOF
sudo cp icsscand.service /etc/systemd/system/
sudo systemctl enable icsscand.service sudo systemctl enable icsscand.service
sudo systemctl start icsscand.service sudo systemctl start icsscand.service