Revert "reconfigure: Run the effect scripts as separate processes."
This reverts commit 5517750344
.
That commit would remove all sorts of error checking when running those
programs.
master
parent
28f6f1e0da
commit
00a1ebb84a
|
@ -100,7 +100,7 @@ atomically, and run OS's activation script."
|
||||||
"Using EVAL, a monadic procedure taking a single G-Expression as an argument,
|
"Using EVAL, a monadic procedure taking a single G-Expression as an argument,
|
||||||
create a new generation of PROFILE pointing to the directory of OS, switch to
|
create a new generation of PROFILE pointing to the directory of OS, switch to
|
||||||
it atomically, and run OS's activation script."
|
it atomically, and run OS's activation script."
|
||||||
(eval #~(system* #$(switch-system-program os profile))))
|
(eval #~(primitive-load #$(switch-system-program os profile))))
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
@ -176,7 +176,7 @@ services as defined by OS."
|
||||||
(map live-service-canonical-name
|
(map live-service-canonical-name
|
||||||
live-services)))
|
live-services)))
|
||||||
(service-files (map shepherd-service-file target-services)))
|
(service-files (map shepherd-service-file target-services)))
|
||||||
(eval #~(system* #$(upgrade-services-program service-files
|
(eval #~(primitive-load #$(upgrade-services-program service-files
|
||||||
to-start
|
to-start
|
||||||
to-unload
|
to-unload
|
||||||
to-restart)))))))
|
to-restart)))))))
|
||||||
|
@ -252,7 +252,7 @@ additional configurations specified by MENU-ENTRIES can be selected."
|
||||||
(package (bootloader-package bootloader))
|
(package (bootloader-package bootloader))
|
||||||
(device (bootloader-configuration-target configuration))
|
(device (bootloader-configuration-target configuration))
|
||||||
(bootcfg-file (bootloader-configuration-file bootloader)))
|
(bootcfg-file (bootloader-configuration-file bootloader)))
|
||||||
(eval #~(system* #$(install-bootloader-program installer
|
(eval #~(primitive-load #$(install-bootloader-program installer
|
||||||
package
|
package
|
||||||
bootcfg
|
bootcfg
|
||||||
bootcfg-file
|
bootcfg-file
|
||||||
|
|
Reference in New Issue