all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* GNU Shepherd 0.3 released
@ 2016-01-28  9:46 Ludovic Courtès
  2016-01-28  9:53 ` Alex Sassmannshausen
  0 siblings, 1 reply; 2+ messages in thread
From: Ludovic Courtès @ 2016-01-28  9:46 UTC (permalink / raw)
  To: guix-devel, gnu-system-discuss; +Cc: guile-user, guile-sources

[-- Attachment #1: Type: text/plain, Size: 4435 bytes --]

We are pleased to announce the GNU Shepherd version 0.3, the new alpha
release of was used to be called GNU dmd.


• About

  The GNU Daemon Shepherd or GNU Shepherd is a service manager written
  in Guile that looks after the herd of system services.  It provides a
  replacement for the service-managing capabilities of SysV-init (or any
  other init) with a dependency-based system with a convenient
  interface.  The GNU Shepherd may also be used by unprivileged users to
  manage per-user daemons (e.g., tor, privoxy, mcron, etc.)  It is
  written in Guile Scheme, and is configured and extended using Guile.

  The GNU Shepherd is developed jointly with the GNU Guix project; it is
  used as the init system of GuixSD, GNU’s advanced GNU/Linux distribution.

  Before this release, the GNU Shepherd was known as GNU dmd, the
  daemon-managing daemon.

  http://www.gnu.org/software/shepherd/


• Download

  Here are the compressed sources and a GPG detached signature[*]:
    ftp://alpha.gnu.org/gnu/dmd/shepherd-0.3.tar.gz
    ftp://alpha.gnu.org/gnu/dmd/shepherd-0.3.tar.gz.sig

  Note: source code will eventually be available from
  ftp://alpha.gnu.org/gnu/shepherd.

  Use a mirror for higher download bandwidth:
    http://www.gnu.org/order/ftp.html

  Here are the MD5 and SHA1 checksums:

  f34cf481a8a7a557771799aea5f7a9a6  shepherd-0.3.tar.gz
  16fab265a22a3d6dfe46fe172e0af388fa3be796  shepherd-0.3.tar.gz

  [*] Use a .sig file to verify that the corresponding file (without the
  .sig suffix) is intact.  First, be sure to download both the .sig file
  and the corresponding tarball.  Then, run a command like this:

    gpg --verify shepherd-0.3.tar.gz.sig

  If that command fails because you don't have the required public key,
  then run this command to import it:

    gpg --keyserver keys.gnupg.net --recv-keys 3D9AEBB5

  and rerun the 'gpg --verify' command.

  This release was bootstrapped with the following tools:
    Autoconf 2.69
    Automake 1.15
    Makeinfo 6.0
    Help2man 1.47.3


• Changes since version 0.2 (excerpt from the NEWS file)

  ** GNU dmd becomes the GNU Shepherd

  The GNU Shepherd herds your daemons!
  See http://www.gnu.org/software/shepherd/#history for details.
  As a side effect, many incompatible changes were made:

    - The ‘dmd’ command was renamed to ‘shepherd’.
    - The ‘deco’ command was renamed to ‘herd’.
    - The default system-wide config file is now /etc/shepherd.scm.
    - The default per-user config file is now ~/.config/shepherd/init.scm.
    - The special ‘dmd’ service is now called ‘root’ and ‘shepherd’.  Thus,
      instead of:
         deco load dmd foo.scm
      you would now type:
         herd load root foo.scm
    - Guile modules now live in the (shepherd …) name space.

  ** ‘herd status’ and ‘herd detailed-status’ assumes the ‘root’ service

  That is, ‘herd status’ is equivalent to ‘herd status root’.

  ** ‘herd help’ returns a meaningful help message
  ** ‘shepherd’ stops itself when it receives SIGINT

  This is what happens when ‘shepherd’ is running as PID 1 on GNU/Linux and
  ctrl-alt-del is pressed (see ctrlaltdel(8)).

  ** ‘halt’ and ‘reboot’ connect to the system socket unconditionally
  ** ‘herd’ uses a non-zero exit code upon errors
  ** The ‘root’ service has a new ‘eval’ action
  ** Basic man pages are now provided
  ** ‘make-forkexec-constructor’ has new #:group and #:user parameters
  ** ‘make-forkexec-constructor’ has a new #:pid-file parameter
  ** (shepherd services) now exports ‘make-actions’ and ‘provided-by’
  ** ‘shepherd --pid=FILE’ writes FILE atomically
  ** The communication protocol is now entirely sexp-based (see the manual)
  ** ‘shepherd’ is more robust to misbehaving clients
  ** Cross-compilation is now supported
  ** The build system uses “silent rules” by default
  ** Internally, the coding style of various parts has been improved

Please report bugs to bug-guix@gnu.org.
Join guix-devel@gnu.org and gnu-system-discuss@gnu.org for discussions.

Thanks to everyone who contributed!

    19  Alex Kost
     1  Andy Wingo
     2  David Michael
     3  David Thompson
     1  Fabian Harfert
    73  Ludovic Courtès
    10  Mathieu Lirzin

Ludovic.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: GNU Shepherd 0.3 released
  2016-01-28  9:46 GNU Shepherd 0.3 released Ludovic Courtès
@ 2016-01-28  9:53 ` Alex Sassmannshausen
  0 siblings, 0 replies; 2+ messages in thread
From: Alex Sassmannshausen @ 2016-01-28  9:53 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, guile-user

Congratulations to all involved, and for the new name.  I like it :-)

Alex

Ludovic Courtès writes:

> We are pleased to announce the GNU Shepherd version 0.3, the new alpha
> release of was used to be called GNU dmd.
>
>
> • About
>
>   The GNU Daemon Shepherd or GNU Shepherd is a service manager written
>   in Guile that looks after the herd of system services.  It provides a
>   replacement for the service-managing capabilities of SysV-init (or any
>   other init) with a dependency-based system with a convenient
>   interface.  The GNU Shepherd may also be used by unprivileged users to
>   manage per-user daemons (e.g., tor, privoxy, mcron, etc.)  It is
>   written in Guile Scheme, and is configured and extended using Guile.
>
>   The GNU Shepherd is developed jointly with the GNU Guix project; it is
>   used as the init system of GuixSD, GNU’s advanced GNU/Linux distribution.
>
>   Before this release, the GNU Shepherd was known as GNU dmd, the
>   daemon-managing daemon.
>
>   http://www.gnu.org/software/shepherd/
>
>
> • Download
>
>   Here are the compressed sources and a GPG detached signature[*]:
>     ftp://alpha.gnu.org/gnu/dmd/shepherd-0.3.tar.gz
>     ftp://alpha.gnu.org/gnu/dmd/shepherd-0.3.tar.gz.sig
>
>   Note: source code will eventually be available from
>   ftp://alpha.gnu.org/gnu/shepherd.
>
>   Use a mirror for higher download bandwidth:
>     http://www.gnu.org/order/ftp.html
>
>   Here are the MD5 and SHA1 checksums:
>
>   f34cf481a8a7a557771799aea5f7a9a6  shepherd-0.3.tar.gz
>   16fab265a22a3d6dfe46fe172e0af388fa3be796  shepherd-0.3.tar.gz
>
>   [*] Use a .sig file to verify that the corresponding file (without the
>   .sig suffix) is intact.  First, be sure to download both the .sig file
>   and the corresponding tarball.  Then, run a command like this:
>
>     gpg --verify shepherd-0.3.tar.gz.sig
>
>   If that command fails because you don't have the required public key,
>   then run this command to import it:
>
>     gpg --keyserver keys.gnupg.net --recv-keys 3D9AEBB5
>
>   and rerun the 'gpg --verify' command.
>
>   This release was bootstrapped with the following tools:
>     Autoconf 2.69
>     Automake 1.15
>     Makeinfo 6.0
>     Help2man 1.47.3
>
>
> • Changes since version 0.2 (excerpt from the NEWS file)
>
>   ** GNU dmd becomes the GNU Shepherd
>
>   The GNU Shepherd herds your daemons!
>   See http://www.gnu.org/software/shepherd/#history for details.
>   As a side effect, many incompatible changes were made:
>
>     - The ‘dmd’ command was renamed to ‘shepherd’.
>     - The ‘deco’ command was renamed to ‘herd’.
>     - The default system-wide config file is now /etc/shepherd.scm.
>     - The default per-user config file is now ~/.config/shepherd/init.scm.
>     - The special ‘dmd’ service is now called ‘root’ and ‘shepherd’.  Thus,
>       instead of:
>          deco load dmd foo.scm
>       you would now type:
>          herd load root foo.scm
>     - Guile modules now live in the (shepherd …) name space.
>
>   ** ‘herd status’ and ‘herd detailed-status’ assumes the ‘root’ service
>
>   That is, ‘herd status’ is equivalent to ‘herd status root’.
>
>   ** ‘herd help’ returns a meaningful help message
>   ** ‘shepherd’ stops itself when it receives SIGINT
>
>   This is what happens when ‘shepherd’ is running as PID 1 on GNU/Linux and
>   ctrl-alt-del is pressed (see ctrlaltdel(8)).
>
>   ** ‘halt’ and ‘reboot’ connect to the system socket unconditionally
>   ** ‘herd’ uses a non-zero exit code upon errors
>   ** The ‘root’ service has a new ‘eval’ action
>   ** Basic man pages are now provided
>   ** ‘make-forkexec-constructor’ has new #:group and #:user parameters
>   ** ‘make-forkexec-constructor’ has a new #:pid-file parameter
>   ** (shepherd services) now exports ‘make-actions’ and ‘provided-by’
>   ** ‘shepherd --pid=FILE’ writes FILE atomically
>   ** The communication protocol is now entirely sexp-based (see the manual)
>   ** ‘shepherd’ is more robust to misbehaving clients
>   ** Cross-compilation is now supported
>   ** The build system uses “silent rules” by default
>   ** Internally, the coding style of various parts has been improved
>
> Please report bugs to bug-guix@gnu.org.
> Join guix-devel@gnu.org and gnu-system-discuss@gnu.org for discussions.
>
> Thanks to everyone who contributed!
>
>     19  Alex Kost
>      1  Andy Wingo
>      2  David Michael
>      3  David Thompson
>      1  Fabian Harfert
>     73  Ludovic Courtès
>     10  Mathieu Lirzin
>
> Ludovic.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-01-28  9:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-28  9:46 GNU Shepherd 0.3 released Ludovic Courtès
2016-01-28  9:53 ` Alex Sassmannshausen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.