summaryrefslogtreecommitdiff
path: root/systemd
diff options
context:
space:
mode:
Diffstat (limited to 'systemd')
-rw-r--r--systemd/CMakeLists.txt4
-rw-r--r--systemd/cert-checker.service10
2 files changed, 14 insertions, 0 deletions
diff --git a/systemd/CMakeLists.txt b/systemd/CMakeLists.txt
new file mode 100644
index 0000000..982fe1d
--- /dev/null
+++ b/systemd/CMakeLists.txt
@@ -0,0 +1,4 @@
+INSTALL(FILES
+ ${PROJECT_SOURCE_DIR}/systemd/cert-checker.service
+ DESTINATION
+ ${SYSTEMD_UNIT_DIR})
diff --git a/systemd/cert-checker.service b/systemd/cert-checker.service
new file mode 100644
index 0000000..58529b9
--- /dev/null
+++ b/systemd/cert-checker.service
@@ -0,0 +1,10 @@
+[Unit]
+Description=Start the Cert-Checker
+Requires=dbus.service
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/cert-checker
+
+[Install]
+WantedBy=multi-user.target