Skip to content
Snippets Groups Projects
Unverified Commit 9328eafb authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

services: file-system: Make sure fsck.* commands are in $PATH.

Fixes a regression introduced in
bf7ef1bb, whereby the fsck.* commands
would not be found.

* gnu/services/base.scm (file-system-shepherd-service): Call calls to
'setenv'.
parent a79fbd5d
No related branches found
No related tags found
No related merge requests found
...@@ -269,10 +269,24 @@ (define (file-system-shepherd-service file-system) ...@@ -269,10 +269,24 @@ (define (file-system-shepherd-service file-system)
#$(if create? #$(if create?
#~(mkdir-p #$target) #~(mkdir-p #$target)
#t) #t)
(mount-file-system
`(#$device #$title #$target #$type #$flags #$options (let (($PATH (getenv "PATH")))
#$check?) #:root "/") ;; Make sure fsck.ext2 & co. can be found.
#t)) (dynamic-wind
(lambda ()
(setenv "PATH"
(string-append
#$e2fsprogs "/sbin:"
"/run/current-system/profile/sbin:"
$PATH)))
(lambda ()
(mount-file-system
`(#$device #$title #$target #$type #$flags
#$options #$check?)
#:root "/"))
(lambda ()
(setenv "PATH" $PATH)))
#t)))
(stop #~(lambda args (stop #~(lambda args
;; Normally there are no processes left at this point, so ;; Normally there are no processes left at this point, so
;; TARGET can be safely unmounted. ;; TARGET can be safely unmounted.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment