From 7546e75b7c3b8ed0b5cfa11c9b9b45831ab34a53 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Tue, 5 Sep 2017 16:53:31 +0200 Subject: build: Add systemd unit on install This adds a systemd unit for the irmd on installation of Ouroboros. --- CMakeLists.txt | 8 ++++++++ irmd.service.in | 9 +++++++++ src/lib/CMakeLists.txt | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 irmd.service.in diff --git a/CMakeLists.txt b/CMakeLists.txt index d4060d5f..db583144 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -74,6 +74,14 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/ouroboros.pc.in" install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ouroboros.pc" DESTINATION "usr/lib/pkgconfig") +if (IS_DIRECTORY "/usr/lib/systemd") + configure_file("${CMAKE_CURRENT_SOURCE_DIR}/irmd.service.in" + "${CMAKE_CURRENT_BINARY_DIR}/irmd.service" @ONLY) + + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/irmd.service" + DESTINATION "usr/lib/systemd/system") +endif () + enable_testing() add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}) diff --git a/irmd.service.in b/irmd.service.in new file mode 100644 index 00000000..e6dc006e --- /dev/null +++ b/irmd.service.in @@ -0,0 +1,9 @@ +[Unit] +Description=Ouroboros IPC Resource Manager Daemon + +[Service] +ExecStart=@CMAKE_INSTALL_PREFIX@/sbin/irmd +User=root + +[Install] +WantedBy=multi-user.target \ No newline at end of file diff --git a/src/lib/CMakeLists.txt b/src/lib/CMakeLists.txt index 9d8fbf9c..eeb7966b 100644 --- a/src/lib/CMakeLists.txt +++ b/src/lib/CMakeLists.txt @@ -52,7 +52,7 @@ if (LIBGCRYPT_LIBRARIES) REGEX "^#define GCRYPT_VERSION ") string(REGEX REPLACE "^#define GCRYPT_VERSION \"(.*)\".*$" "\\1" GCVER "${GCSTR}") - message(STATUS "Found libgcrypt: ${LIBGCRYPT_LIBRARIES}" + message(STATUS "Found libgcrypt: ${LIBGCRYPT_LIBRARIES} " "(found version \"${GCVER}\")") if (NOT GCVER VERSION_LESS "1.7.0") set (DISABLE_LIBGCRYPT FALSE CACHE BOOL "Disable libgcrypt support") -- cgit v1.2.3