Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-09-07 20:43:25 +0300
committerRobert Adam <dev@robert-adam.de>2022-09-10 18:28:34 +0300
commit7b6bb49271413f215c4799c740678875086d4d78 (patch)
treebd1964d1cfea291ee45e1907779d59ac50031db5 /auxiliary_files
parentb59a2b6774229ddd0f9c4af52a64ab8fc7cba2fd (diff)
MAINT: Delete mumble-server.logrotate.in
The logrotate script is not intended to be used on systems with systemd support. However, we don't want to take on the burden of having to keep around and maintain config files for non-systemd systems.
Diffstat (limited to 'auxiliary_files')
-rw-r--r--auxiliary_files/CMakeLists.txt1
-rw-r--r--auxiliary_files/config_files/mumble-server.logrotate.in10
2 files changed, 0 insertions, 11 deletions
diff --git a/auxiliary_files/CMakeLists.txt b/auxiliary_files/CMakeLists.txt
index c226e4330..2059b09ae 100644
--- a/auxiliary_files/CMakeLists.txt
+++ b/auxiliary_files/CMakeLists.txt
@@ -46,7 +46,6 @@ if(server)
delayed_configure_files(
TARGET mumble-server
FILES
- "${CMAKE_CURRENT_SOURCE_DIR}/config_files/mumble-server.logrotate.in=${CMAKE_CURRENT_BINARY_DIR}/mumble-server.logrotate"
"${CMAKE_CURRENT_SOURCE_DIR}/config_files/mumble-server.service.in=${CMAKE_CURRENT_BINARY_DIR}/mumble-server.service"
"${CMAKE_CURRENT_SOURCE_DIR}/run_scripts/mumble-server-user-wrapper.in=${CMAKE_CURRENT_BINARY_DIR}/mumble-server-user-wrapper"
PASSTHROUGH_VARIABLES
diff --git a/auxiliary_files/config_files/mumble-server.logrotate.in b/auxiliary_files/config_files/mumble-server.logrotate.in
deleted file mode 100644
index e92479d3e..000000000
--- a/auxiliary_files/config_files/mumble-server.logrotate.in
+++ /dev/null
@@ -1,10 +0,0 @@
-/var/log/@MUMBLE_SERVER_BINARY_NAME@/mumble-server.log {
- weekly
- rotate 7
- compress
- delaycompress
- missingok
- postrotate
- start-stop-daemon --quiet --oknodo --stop --signal 1 --exec /usr/sbin/@MUMBLE_SERVER_BINARY_NAME@ --user mumble-server --pidfile /var/run/@MUMBLE_SERVER_BINARY_NAME@/mumble-server.pid
- endscript
-}