From 42fc7284cdef03e396af4045824223059097ce2c Mon Sep 17 00:00:00 2001 From: Oliver Giles Date: Tue, 16 Oct 2018 20:40:10 +0300 Subject: [PATCH] move conf file and unit file to etc dir --- CMakeLists.txt | 4 ++-- laminar.conf => etc/laminar.conf | 0 laminar.service => etc/laminar.service | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename laminar.conf => etc/laminar.conf (100%) rename laminar.service => etc/laminar.service (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index a35be96..263e829 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -102,7 +102,7 @@ set(SYSTEMD_UNITDIR /lib/systemd/system CACHE PATH "Path to systemd unit files") set(BASH_COMPLETIONS_DIR usr/share/bash-completion/completions CACHE PATH "Path to bash completions directory") set(ZSH_COMPLETIONS_DIR usr/share/zsh/site-functions CACHE PATH "Path to zsh completions directory") install(TARGETS laminard laminarc RUNTIME DESTINATION usr/bin) -install(FILES laminar.service DESTINATION ${SYSTEMD_UNITDIR}) -install(FILES laminar.conf DESTINATION etc) +install(FILES etc/laminar.service DESTINATION ${SYSTEMD_UNITDIR}) +install(FILES etc/laminar.conf DESTINATION etc) install(FILES etc/laminarc-completion.bash DESTINATION ${BASH_COMPLETIONS_DIR} RENAME laminarc) install(FILES etc/laminarc-completion.zsh DESTINATION ${ZSH_COMPLETIONS_DIR} RENAME _laminarc) diff --git a/laminar.conf b/etc/laminar.conf similarity index 100% rename from laminar.conf rename to etc/laminar.conf diff --git a/laminar.service b/etc/laminar.service similarity index 100% rename from laminar.service rename to etc/laminar.service