diff options
-rw-r--r-- | container.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/container.scm b/container.scm index 5f78974..03ad2a2 100644 --- a/container.scm +++ b/container.scm @@ -640,8 +640,8 @@ (@@ (gnu services mail) exim-configuration-package)) (define (adapt-exim-activation-extension ext) - ;; Make exim logs accessible under /var/log/exim and symlink current - ;; configuration as /etc/exim.conf. + ;; Make exim logs accessible under /var/log/exim and include current + ;; configuration from /etc/exim.conf. (let ((old-activation (service-extension-compute ext))) (define (new-activation exim-config) #~(begin @@ -665,8 +665,8 @@ exim_path = /run/setuid-programs/exim (service-extension activation-service-type new-activation))) (define (adapt-exim-shepherd-extension ext) - ;; Make exim daemon use /etc/exim.conf which we made a symlink to the real - ;; config file. + ;; Make exim daemon use /etc/exim.conf which we made include the real config + ;; file. (let ((old-activation (service-extension-compute ext))) (define (new-activation exim-config) (let ((exim-package (exim-configuration-package exim-config))) |