From 7fe1432a2ec2b8a7dfbfe882044dadadccd2e2c8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Thu, 22 Mar 2018 11:18:26 +0100
Subject: [PATCH] services: rottlog: Add /var/log/debug to
 '%default-rotations'.

* gnu/services/admin.scm (%rotated-files): Add "/var/log/debug".
---
 gnu/services/admin.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/services/admin.scm b/gnu/services/admin.scm
index 64d7ae723cc..95d055f83d5 100644
--- a/gnu/services/admin.scm
+++ b/gnu/services/admin.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
-;;; Copyright © 2016, 2017 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -92,7 +92,8 @@ (define-record-type* <log-rotation> log-rotation make-log-rotation
 
 (define %rotated-files
   ;; Syslog files subject to rotation.
-  '("/var/log/messages" "/var/log/secure" "/var/log/maillog"))
+  '("/var/log/messages" "/var/log/secure" "/var/log/debug"
+    "/var/log/maillog"))
 
 (define %default-rotations
   (list (log-rotation                             ;syslog files
-- 
GitLab