services: iwd: Rotate logs.

* rosenthal/services/networking.scm (iwd-log-rotations): New procedure.
(iwd-service-type): Extend rottlog-service-type with it.
pull/2/head
Hilton Chain 12 months ago
parent bf0c5dc70b
commit 95393955f1
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292
  1. 8
      rosenthal/services/networking.scm

@ -347,6 +347,10 @@ list, power save will be disabled."))
(define add-iwd-package
(compose list iwd-configuration-iwd))
(define (iwd-log-rotations config)
(list (log-rotation
(files (list (iwd-configuration-log-file config))))))
(define (iwd-shepherd-service config)
(match-record config <iwd-configuration>
(iwd resolvconf log-file
@ -382,7 +386,9 @@ list, power save will be disabled."))
(service-extension etc-service-type
add-iwd-config-file)
(service-extension profile-service-type
add-iwd-package)))
add-iwd-package)
(service-extension rottlog-service-type
iwd-log-rotations)))
(default-value (iwd-configuration))
(description "Run iwd, the iNet wireless daemon.")))

Loading…
Cancel
Save