[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: bug#34211: error running container: mingetty cannot find ttys
From: |
Arun Isaac |
Subject: |
Re: bug#34211: error running container: mingetty cannot find ttys |
Date: |
Fri, 15 Feb 2019 16:09:22 +0530 |
>> You should do something along the lines of the following:
>>
>> (remove (lambda (service)
>> (let ((type (service-type-name (service-kind service))))
>> (or (eq? type 'mingetty)
>> (eq? type 'console-fonts))))
>> %base-services)
>
> thank you for your suggestion but this does not work
You need to use remove from (srfi srfi-1), not from (rnrs lists).
In your container-minimal.scm, replace
(use-modules (rnrs lists))
with
(use-modules (srfi srfi-1))
signature.asc
Description: PGP signature
- Re: error running container: mingetty cannot find ttys, Giovanni Biscuolo, 2019/02/06
- Re: bug#34211: error running container: mingetty cannot find ttys, Ludovic Courtès, 2019/02/11
- Re: bug#34211: error running container: mingetty cannot find ttys, Giovanni Biscuolo, 2019/02/12
- Re: bug#34211: error running container: mingetty cannot find ttys, Giovanni Biscuolo, 2019/02/13
- Re: bug#34211: error running container: mingetty cannot find ttys, Arun Isaac, 2019/02/14
- Re: bug#34211: error running container: mingetty cannot find ttys, Giovanni Biscuolo, 2019/02/15
- Re: bug#34211: error running container: mingetty cannot find ttys,
Arun Isaac <=
- Re: bug#34211: error running container: mingetty cannot find ttys, Giovanni Biscuolo, 2019/02/15
- Re: bug#34211: error running container: mingetty cannot find ttys, Arun Isaac, 2019/02/15