diff options
author | Andreas Lindhé <andreas@lindhe.io> | 2018-04-06 11:19:17 +0200 |
---|---|---|
committer | Andreas Lindhé <andreas@lindhe.io> | 2018-04-06 11:19:17 +0200 |
commit | 73e3757e5e314295a8cd9020022f2a1bad3f1ddc (patch) | |
tree | 4ee86456a8ba9e926a2d6484543bce4f285147e7 | |
parent | 2842bb1f114fbecdd953e33e536fc112be2f4dc0 (diff) | |
download | midbro-73e3757e5e314295a8cd9020022f2a1bad3f1ddc.tar.gz midbro-73e3757e5e314295a8cd9020022f2a1bad3f1ddc.tar.bz2 |
Add logging service file
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | etc/logging.service | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -49,6 +49,7 @@ install: lib/libmidbro.so cp -p lib/libmidbro.so "$(PREFIX)/lib/" cp -p script/mid.bro "$(PREFIX)/share/midbro" cp -p etc/midbro.service "/etc/systemd/system" + cp -p etc/logging.service "/etc/systemd/system" uninstall: rm -f "$(PREFIX)/include/midbro.h" diff --git a/etc/logging.service b/etc/logging.service new file mode 100644 index 0000000..e2d7c93 --- /dev/null +++ b/etc/logging.service @@ -0,0 +1,9 @@ +[Unit] +Description=logging + +[Service] +ExecStart=/home/pi/midbro/script/logging.py /home/pi/data/log/sysinfo.log +Restart=always + +[Install] +WantedBy=multi-user.target |