6.1 Process Utilities

When writing custom service actions, you may find it useful to spawn helper processes. The (shepherd service) module provides helpers that are safe to use within the shepherd process. See the nginx example, for a typical use case.

Procedure: system command
Procedure: system* command arguments

Run command and return its exit status, which can be examined with status:exit-val and related procedures (see Processes in GNU Guile Reference Manual).

This works exactly like the system and system* procedures provided by Guile but the shepherd process redefines them so they cooperate with its own even loop and child process termination handling.

Procedure: spawn-command command [#:user #f] [#:group #f] [#:environment-variables (default-environment-variables)] [#:directory (default-service-directory)] [#:resource-limits ’()] [#:log-file #f]

Like system*, spawn command (a list of strings) and return its exit status. Additionally accept the same keyword arguments as fork+exec-command: #:user, #:directory, and so on. fork+exec-command.