diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2017-11-05 15:29:52 +0100 | 
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2017-11-05 15:29:52 +0100 | 
| commit | 21b71b01e9c2264c31ef30451c152bb38cc9e635 (patch) | |
| tree | de5e259402da0d92b7ec65349e05710475981fbb /gnu/services/admin.scm | |
| parent | b6d2930d1fbe99172f0d1c96c3347e2ac34f35f5 (diff) | |
services: Add 'description' fields.
* gnu/services/admin.scm (rottlog-service-type)
(tailon-service-type): Add 'description' field.
* gnu/services/audio.scm (mpd-service-type): Likewise.
* gnu/services/avahi.scm (avahi-service-type): Likewise.
* gnu/services/ssh.scm (lsh-service-type)
(openssh-service-type, dropbear-service-type): Likewise.
Diffstat (limited to 'gnu/services/admin.scm')
| -rw-r--r-- | gnu/services/admin.scm | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/gnu/services/admin.scm b/gnu/services/admin.scm index 14452a86c7..64d7ae723c 100644 --- a/gnu/services/admin.scm +++ b/gnu/services/admin.scm @@ -183,6 +183,9 @@ for ROTATION."  (define rottlog-service-type    (service-type     (name 'rottlog) +   (description +    "Periodically rotate log files using GNU@tie{}Rottlog and GNU@tie{}mcron. +Old log files are removed or compressed according to the configuration.")     (extensions (list (service-extension etc-service-type rottlog-etc)                       (service-extension mcron-service-type                                          rottlog-jobs-or-default) @@ -323,6 +326,9 @@ for ROTATION."  (define tailon-service-type    (service-type     (name 'tailon) +   (description +    "Run Tailon, a Web application for monitoring, viewing, and searching log +files.")     (extensions      (list (service-extension shepherd-root-service-type                               tailon-shepherd-service) | 
