2013-09-21 01:08:42 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu system dmd)
|
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
|
#:use-module (guix records)
|
2013-09-26 00:07:42 +02:00
|
|
|
|
#:use-module ((gnu packages base)
|
|
|
|
|
#:select (glibc-final))
|
2013-09-21 01:08:42 +02:00
|
|
|
|
#:use-module ((gnu packages system)
|
2013-12-07 15:01:40 +01:00
|
|
|
|
#:select (mingetty inetutils shadow))
|
2013-09-24 23:15:09 +02:00
|
|
|
|
#:use-module ((gnu packages package-management)
|
|
|
|
|
#:select (guix))
|
2013-09-26 21:10:53 +02:00
|
|
|
|
#:use-module ((gnu packages linux)
|
|
|
|
|
#:select (net-tools))
|
2013-12-07 16:18:51 +01:00
|
|
|
|
#:use-module (gnu system shadow) ; for user accounts/groups
|
|
|
|
|
#:use-module (gnu system linux) ; for PAM services
|
2013-09-21 01:08:42 +02:00
|
|
|
|
#:use-module (ice-9 match)
|
2013-12-07 15:01:40 +01:00
|
|
|
|
#:use-module (ice-9 format)
|
2013-09-21 01:08:42 +02:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2013-12-07 15:01:40 +01:00
|
|
|
|
#:use-module (srfi srfi-26)
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
#:use-module (guix monads)
|
2013-09-21 01:08:42 +02:00
|
|
|
|
#:export (service?
|
|
|
|
|
service
|
|
|
|
|
service-provision
|
|
|
|
|
service-requirement
|
|
|
|
|
service-respawn?
|
|
|
|
|
service-start
|
|
|
|
|
service-stop
|
|
|
|
|
service-inputs
|
2013-12-07 15:01:40 +01:00
|
|
|
|
service-user-accounts
|
|
|
|
|
service-user-groups
|
2013-12-07 16:18:51 +01:00
|
|
|
|
service-pam-services
|
2013-09-21 01:08:42 +02:00
|
|
|
|
|
2013-09-25 21:49:22 +02:00
|
|
|
|
host-name-service
|
2013-09-21 01:08:42 +02:00
|
|
|
|
syslog-service
|
|
|
|
|
mingetty-service
|
2013-09-26 00:07:42 +02:00
|
|
|
|
nscd-service
|
2013-09-24 23:15:09 +02:00
|
|
|
|
guix-service
|
2013-09-25 23:26:08 +02:00
|
|
|
|
static-networking-service
|
|
|
|
|
|
2013-09-21 01:08:42 +02:00
|
|
|
|
dmd-configuration-file))
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; System services as cajoled by dmd.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(define-record-type* <service>
|
|
|
|
|
service make-service
|
|
|
|
|
service?
|
2013-11-27 22:39:07 +01:00
|
|
|
|
(documentation service-documentation ; string
|
|
|
|
|
(default "[No documentation.]"))
|
2013-09-21 01:08:42 +02:00
|
|
|
|
(provision service-provision) ; list of symbols
|
|
|
|
|
(requirement service-requirement ; list of symbols
|
|
|
|
|
(default '()))
|
|
|
|
|
(respawn? service-respawn? ; Boolean
|
|
|
|
|
(default #t))
|
|
|
|
|
(start service-start) ; expression
|
|
|
|
|
(stop service-stop ; expression
|
|
|
|
|
(default #f))
|
|
|
|
|
(inputs service-inputs ; list of inputs
|
2013-12-07 15:01:40 +01:00
|
|
|
|
(default '()))
|
|
|
|
|
(user-accounts service-user-accounts ; list of <user-account>
|
|
|
|
|
(default '()))
|
|
|
|
|
(user-groups service-user-groups ; list of <user-groups>
|
2013-12-07 16:18:51 +01:00
|
|
|
|
(default '()))
|
|
|
|
|
(pam-services service-pam-services ; list of <pam-service>
|
2013-09-21 01:08:42 +02:00
|
|
|
|
(default '())))
|
|
|
|
|
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(define (host-name-service name)
|
2013-09-25 21:49:22 +02:00
|
|
|
|
"Return a service that sets the host name to NAME."
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(with-monad %store-monad
|
|
|
|
|
(return (service
|
2013-11-27 22:39:07 +01:00
|
|
|
|
(documentation "Initialize the machine's host name.")
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(provision '(host-name))
|
|
|
|
|
(start `(lambda _
|
|
|
|
|
(sethostname ,name)))
|
|
|
|
|
(respawn? #f)))))
|
|
|
|
|
|
2013-12-07 16:18:51 +01:00
|
|
|
|
(define* (mingetty-service tty
|
|
|
|
|
#:key
|
|
|
|
|
(motd (text-file "motd" "Welcome.\n"))
|
|
|
|
|
(allow-empty-passwords? #t))
|
2013-09-21 01:08:42 +02:00
|
|
|
|
"Return a service to run mingetty on TTY."
|
2013-12-07 16:18:51 +01:00
|
|
|
|
(mlet %store-monad ((mingetty-bin (package-file mingetty "sbin/mingetty"))
|
|
|
|
|
(motd motd))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(return
|
|
|
|
|
(service
|
2013-11-27 22:39:07 +01:00
|
|
|
|
(documentation (string-append "Run mingetty on " tty "."))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(provision (list (symbol-append 'term- (string->symbol tty))))
|
2013-09-25 21:49:22 +02:00
|
|
|
|
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
;; Since the login prompt shows the host name, wait for the 'host-name'
|
|
|
|
|
;; service to be done.
|
|
|
|
|
(requirement '(host-name))
|
2013-09-25 21:49:22 +02:00
|
|
|
|
|
2013-12-07 16:18:51 +01:00
|
|
|
|
(start `(make-forkexec-constructor ,mingetty-bin "--noclear" ,tty))
|
|
|
|
|
(stop `(make-kill-destructor))
|
|
|
|
|
(inputs `(("mingetty" ,mingetty)
|
|
|
|
|
("motd" ,motd)))
|
|
|
|
|
|
|
|
|
|
(pam-services
|
|
|
|
|
;; Let 'login' be known to PAM. All the mingetty services will have
|
|
|
|
|
;; that PAM service, but that's fine because they're all identical and
|
|
|
|
|
;; duplicates are removed.
|
|
|
|
|
(list (unix-pam-service "login"
|
|
|
|
|
#:allow-empty-passwords? allow-empty-passwords?
|
|
|
|
|
#:motd motd)))))))
|
2013-09-21 01:08:42 +02:00
|
|
|
|
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(define* (nscd-service #:key (glibc glibc-final))
|
2013-09-26 00:07:42 +02:00
|
|
|
|
"Return a service that runs libc's name service cache daemon (nscd)."
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(mlet %store-monad ((nscd (package-file glibc "sbin/nscd")))
|
|
|
|
|
(return (service
|
2013-11-27 22:39:07 +01:00
|
|
|
|
(documentation "Run libc's name service cache daemon (nscd).")
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(provision '(nscd))
|
2013-12-02 23:38:49 +01:00
|
|
|
|
(start `(make-forkexec-constructor ,nscd "-f" "/dev/null"
|
|
|
|
|
"--foreground"))
|
|
|
|
|
(stop `(make-kill-destructor))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
|
|
|
|
|
(respawn? #f)
|
|
|
|
|
(inputs `(("glibc" ,glibc)))))))
|
|
|
|
|
|
|
|
|
|
(define (syslog-service)
|
2013-09-21 01:08:42 +02:00
|
|
|
|
"Return a service that runs 'syslogd' with reasonable default settings."
|
|
|
|
|
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
;; Snippet adapted from the GNU inetutils manual.
|
|
|
|
|
(define contents "
|
2013-09-21 01:08:42 +02:00
|
|
|
|
# Log all kernel messages, authentication messages of
|
|
|
|
|
# level notice or higher and anything of level err or
|
|
|
|
|
# higher to the console.
|
|
|
|
|
# Don't log private authentication messages!
|
|
|
|
|
*.err;kern.*;auth.notice;authpriv.none /dev/console
|
|
|
|
|
|
|
|
|
|
# Log anything (except mail) of level info or higher.
|
|
|
|
|
# Don't log private authentication messages!
|
|
|
|
|
*.info;mail.none;authpriv.none /var/log/messages
|
|
|
|
|
|
|
|
|
|
# Same, in a different place.
|
|
|
|
|
*.info;mail.none;authpriv.none /dev/tty12
|
|
|
|
|
|
|
|
|
|
# The authpriv file has restricted access.
|
|
|
|
|
authpriv.* /var/log/secure
|
|
|
|
|
|
|
|
|
|
# Log all the mail messages in one place.
|
|
|
|
|
mail.* /var/log/maillog
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
")
|
|
|
|
|
|
|
|
|
|
(mlet %store-monad
|
|
|
|
|
((syslog.conf (text-file "syslog.conf" contents))
|
|
|
|
|
(syslogd (package-file inetutils "libexec/syslogd")))
|
|
|
|
|
(return
|
|
|
|
|
(service
|
2013-11-27 22:39:07 +01:00
|
|
|
|
(documentation "Run the syslog daemon (syslogd).")
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(provision '(syslogd))
|
2013-12-02 23:38:49 +01:00
|
|
|
|
(start `(make-forkexec-constructor ,syslogd "--no-detach"
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
"--rcfile" ,syslog.conf))
|
2013-12-02 23:38:49 +01:00
|
|
|
|
(stop `(make-kill-destructor))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(inputs `(("inetutils" ,inetutils)
|
|
|
|
|
("syslog.conf" ,syslog.conf)))))))
|
|
|
|
|
|
2013-12-07 15:01:40 +01:00
|
|
|
|
(define* (guix-build-accounts count #:key
|
|
|
|
|
(first-uid 30001)
|
|
|
|
|
(gid 30000)
|
|
|
|
|
(shadow shadow))
|
|
|
|
|
"Return a list of COUNT user accounts for Guix build users, with UIDs
|
|
|
|
|
starting at FIRST-UID, and under GID."
|
2013-12-09 22:29:01 +01:00
|
|
|
|
(with-monad %store-monad
|
2013-12-07 15:01:40 +01:00
|
|
|
|
(return (unfold (cut > <> count)
|
|
|
|
|
(lambda (n)
|
|
|
|
|
(user-account
|
|
|
|
|
(name (format #f "guixbuilder~2,'0d" n))
|
|
|
|
|
(password "!")
|
|
|
|
|
(uid (+ first-uid n -1))
|
2013-12-09 22:29:01 +01:00
|
|
|
|
(gid gid)
|
2013-12-07 15:01:40 +01:00
|
|
|
|
(comment (format #f "Guix Build User ~2d" n))
|
|
|
|
|
(home-directory "/var/empty")
|
2013-12-09 22:29:01 +01:00
|
|
|
|
(shell (package-file shadow "sbin/nologin"))
|
|
|
|
|
(inputs `(("shadow" ,shadow)))))
|
2013-12-07 15:01:40 +01:00
|
|
|
|
1+
|
|
|
|
|
1))))
|
|
|
|
|
|
|
|
|
|
(define* (guix-service #:key (guix guix) (builder-group "guixbuild")
|
|
|
|
|
(build-user-gid 30000) (build-accounts 10))
|
|
|
|
|
"Return a service that runs the build daemon from GUIX, and has
|
|
|
|
|
BUILD-ACCOUNTS user accounts available under BUILD-USER-GID."
|
|
|
|
|
(mlet %store-monad ((daemon (package-file guix "bin/guix-daemon"))
|
|
|
|
|
(accounts (guix-build-accounts build-accounts
|
|
|
|
|
#:gid build-user-gid)))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(return (service
|
|
|
|
|
(provision '(guix-daemon))
|
|
|
|
|
(start `(make-forkexec-constructor ,daemon
|
|
|
|
|
"--build-users-group"
|
|
|
|
|
,builder-group))
|
2013-12-02 23:38:49 +01:00
|
|
|
|
(stop `(make-kill-destructor))
|
2013-12-07 15:01:40 +01:00
|
|
|
|
(inputs `(("guix" ,guix)))
|
|
|
|
|
(user-accounts accounts)
|
|
|
|
|
(user-groups (list (user-group
|
|
|
|
|
(name builder-group)
|
|
|
|
|
(id build-user-gid)
|
|
|
|
|
(members (map user-account-name
|
|
|
|
|
user-accounts)))))))))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
|
|
|
|
|
(define* (static-networking-service interface ip
|
2013-09-26 21:10:53 +02:00
|
|
|
|
#:key
|
|
|
|
|
gateway
|
2013-12-06 23:58:46 +01:00
|
|
|
|
(name-servers '())
|
2013-09-26 21:10:53 +02:00
|
|
|
|
(inetutils inetutils)
|
|
|
|
|
(net-tools net-tools))
|
|
|
|
|
"Return a service that starts INTERFACE with address IP. If GATEWAY is
|
|
|
|
|
true, it must be a string specifying the default network gateway."
|
2013-09-25 23:26:08 +02:00
|
|
|
|
|
|
|
|
|
;; TODO: Eventually we should do this using Guile's networking procedures,
|
|
|
|
|
;; like 'configure-qemu-networking' does, but the patch that does this is
|
|
|
|
|
;; not yet in stock Guile.
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(mlet %store-monad ((ifconfig (package-file inetutils "bin/ifconfig"))
|
|
|
|
|
(route (package-file net-tools "sbin/route")))
|
|
|
|
|
(return
|
|
|
|
|
(service
|
2013-11-27 22:39:07 +01:00
|
|
|
|
(documentation
|
|
|
|
|
(string-append "Set up networking on the '" interface
|
|
|
|
|
"' interface using a static IP address."))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(provision '(networking))
|
|
|
|
|
(start `(lambda _
|
2013-12-02 23:38:49 +01:00
|
|
|
|
;; Return #t if successfully started.
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(and (zero? (system* ,ifconfig ,interface ,ip "up"))
|
|
|
|
|
,(if gateway
|
2013-12-02 23:38:49 +01:00
|
|
|
|
`(zero? (system* ,route "add" "-net" "default"
|
|
|
|
|
"gw" ,gateway))
|
2013-12-06 23:58:46 +01:00
|
|
|
|
#t)
|
|
|
|
|
,(if (pair? name-servers)
|
|
|
|
|
`(call-with-output-file "/etc/resolv.conf"
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(display
|
|
|
|
|
"# Generated by 'static-networking-service'.\n"
|
|
|
|
|
port)
|
|
|
|
|
(for-each (lambda (server)
|
|
|
|
|
(format port "nameserver ~a~%"
|
|
|
|
|
server))
|
|
|
|
|
',name-servers)))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
#t))))
|
|
|
|
|
(stop `(lambda _
|
2013-12-02 23:38:49 +01:00
|
|
|
|
;; Return #f is successfully stopped.
|
|
|
|
|
(not (and (system* ,ifconfig ,interface "down")
|
|
|
|
|
(system* ,route "del" "-net" "default")))))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(respawn? #f)
|
|
|
|
|
(inputs `(("inetutils" ,inetutils)
|
|
|
|
|
,@(if gateway
|
|
|
|
|
`(("net-tools" ,net-tools))
|
|
|
|
|
'())))))))
|
2013-09-25 23:26:08 +02:00
|
|
|
|
|
2013-09-24 23:15:09 +02:00
|
|
|
|
|
2013-12-08 21:22:22 +01:00
|
|
|
|
(define (dmd-configuration-file services etc)
|
|
|
|
|
"Return the dmd configuration file for SERVICES, that initializes /etc from
|
|
|
|
|
ETC on startup."
|
2013-09-21 01:08:42 +02:00
|
|
|
|
(define config
|
|
|
|
|
`(begin
|
2013-12-08 21:22:22 +01:00
|
|
|
|
(use-modules (ice-9 ftw))
|
|
|
|
|
|
2013-09-21 01:08:42 +02:00
|
|
|
|
(register-services
|
|
|
|
|
,@(map (match-lambda
|
2013-11-27 22:39:07 +01:00
|
|
|
|
(($ <service> documentation provision requirement
|
|
|
|
|
respawn? start stop)
|
2013-09-21 01:08:42 +02:00
|
|
|
|
`(make <service>
|
2013-11-27 22:39:07 +01:00
|
|
|
|
#:docstring ,documentation
|
2013-09-21 01:08:42 +02:00
|
|
|
|
#:provides ',provision
|
|
|
|
|
#:requires ',requirement
|
|
|
|
|
#:respawn? ,respawn?
|
|
|
|
|
#:start ,start
|
|
|
|
|
#:stop ,stop)))
|
|
|
|
|
services))
|
2013-12-08 21:22:22 +01:00
|
|
|
|
|
|
|
|
|
;; /etc is a mixture of static and dynamic settings. Here is where we
|
|
|
|
|
;; initialize it from the static part.
|
|
|
|
|
(format #t "populating /etc from ~a...~%" ,etc)
|
|
|
|
|
(let ((rm-f (lambda (f)
|
|
|
|
|
(false-if-exception (delete-file f)))))
|
|
|
|
|
(rm-f "/etc/static")
|
|
|
|
|
(symlink ,etc "/etc/static")
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
;; TODO: Handle 'shadow' specially so that changed
|
|
|
|
|
;; password aren't lost.
|
|
|
|
|
(let ((target (string-append "/etc/" file))
|
|
|
|
|
(source (string-append "/etc/static/" file)))
|
|
|
|
|
(rm-f target)
|
|
|
|
|
(symlink source target)))
|
|
|
|
|
(scandir ,etc
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(not (member file '("." ".."))))))
|
|
|
|
|
|
|
|
|
|
;; Prevent ETC from being GC'd.
|
2013-12-09 22:02:16 +01:00
|
|
|
|
(rm-f "/var/nix/gcroots/etc-directory")
|
2013-12-08 21:22:22 +01:00
|
|
|
|
(symlink ,etc "/var/nix/gcroots/etc-directory"))
|
|
|
|
|
|
|
|
|
|
(format #t "starting services...~%")
|
2013-09-21 01:08:42 +02:00
|
|
|
|
(for-each start ',(append-map service-provision services))))
|
|
|
|
|
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 21:30:30 +02:00
|
|
|
|
(text-file "dmd.conf" (object->string config)))
|
2013-09-21 01:08:42 +02:00
|
|
|
|
|
|
|
|
|
;;; dmd.scm ends here
|