3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

services: nscd: Create /etc/resolv.conf if it does not exist.

* gnu/services/base.scm (nscd-activation): Create /etc/resolv.conf if it
does not exist yet.
This commit is contained in:
Ludovic Courtès 2017-05-02 12:21:31 +02:00
parent 1fd0fc0db4
commit 49f9d7f697
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1149,7 +1149,14 @@ the tty to run, among other things."
#~(begin
(use-modules (guix build utils))
(mkdir-p "/var/run/nscd")
(mkdir-p "/var/db/nscd"))) ;for the persistent cache
(mkdir-p "/var/db/nscd") ;for the persistent cache
;; In libc 2.25 nscd uses inotify to watch /etc/resolv.conf, but only if
;; that file exists when it is started. Thus create it here.
(unless (file-exists? "/etc/resolv.conf")
(call-with-output-file "/etc/resolv.conf"
(lambda (port)
(display "# This is a placeholder.\n" port))))))
(define nscd-service-type
(service-type (name 'nscd)