diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-03-09 19:23:02 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2020-03-14 15:39:07 +0100 |
commit | 8796a612f0600fc973aa908b84ded837f3470512 (patch) | |
tree | 01151da8de2014452635f175c97d95ad914fd45a /CMakeLists.txt | |
parent | 0df9186d8d6248ecc3a82094b8cac9262287c704 (diff) | |
download | ouroboros-8796a612f0600fc973aa908b84ded837f3470512.tar.gz ouroboros-8796a612f0600fc973aa908b84ded837f3470512.zip |
ouroboros: Rename service to ouroboros
The service was called "irmd", but it makes a bit more sense to give
it the system name. Only the service name is changed, the irmd binary
remains irmd.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 130e3eb6..f243cf4a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,9 +125,9 @@ if (SYSTEMD_FOUND) endif () if (NOT ${SYSTEMD_UNITDIR} STREQUAL "") message(STATUS "Installing systemd service in: ${SYSTEMD_UNITDIR}") - configure_file("${CMAKE_CURRENT_SOURCE_DIR}/irmd.service.in" - "${CMAKE_CURRENT_BINARY_DIR}/irmd.service" @ONLY) - install(FILES "${CMAKE_CURRENT_BINARY_DIR}/irmd.service" + configure_file("${CMAKE_CURRENT_SOURCE_DIR}/ouroboros.service.in" + "${CMAKE_CURRENT_BINARY_DIR}/ouroboros.service" @ONLY) + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ouroboros.service" DESTINATION "${SYSTEMD_UNITDIR}") endif () endif () |