mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-10 16:50:43 +02:00
linux-container: Remove '%containerized-shepherd-service' hack.
This hack worked around a defect in the Shepherd 0.5.0 and is no longer needed. * gnu/services/shepherd.scm (%containerized-shepherd-service): Remove. * gnu/system/linux-container.scm (container-essential-services): Don't use it.
This commit is contained in:
parent
051b279fd0
commit
86b8869fff
2 changed files with 1 additions and 18 deletions
|
@ -29,7 +29,6 @@
|
|||
#:use-module (gnu build linux-container)
|
||||
#:use-module (gnu services)
|
||||
#:use-module (gnu services base)
|
||||
#:use-module (gnu services shepherd)
|
||||
#:use-module (gnu system)
|
||||
#:use-module (gnu system file-systems)
|
||||
#:export (system-container
|
||||
|
@ -52,7 +51,7 @@ from OS that are needed on the bare metal and not in a container."
|
|||
(let ((locale (operating-system-locale-directory os)))
|
||||
(with-monad %store-monad
|
||||
(return `(("locale" ,locale))))))
|
||||
(append base (list %containerized-shepherd-service))))
|
||||
base))
|
||||
|
||||
(define (containerized-operating-system os mappings)
|
||||
"Return an operating system based on OS for use in a Linux container
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue