unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* GNU Shepherd 0.6.1 released
@ 2019-05-11 17:45 Ludovic Courtès
  2019-05-11 23:35 ` Arne Babenhauserheide
  0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2019-05-11 17:45 UTC (permalink / raw)
  To: guix-devel, guile-sources, guile-user, info-gnu

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

We are pleased to announce the GNU Shepherd version 0.6.1, a bug-fix
release.

• 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 Guix, GNU’s advanced GNU/Linux distribution.

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


• Download

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

  Use a mirror for higher download bandwidth:
    https://ftpmirror.gnu.org/shepherd/shepherd-0.6.1.tar.gz
    https://ftpmirror.gnu.org/shepherd/shepherd-0.6.1.tar.gz.sig

  Here are the SHA1 and SHA256 checksums:

  256847dedeee7409181c1c5a667c6dd09900ed69  shepherd-0.6.1.tar.gz
  531bca85ee71ce8e99dcc0add5eb3a968229c350320198db737721b8caaac6f6  shepherd-0.6.1.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.6.1.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 pool.sks-keyservers.net \
        --recv-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5

  and rerun the 'gpg --verify' command.

  This release was bootstrapped with the following tools:
    Autoconf 2.69
    Automake 1.16.1
    Makeinfo 6.5
    Help2man 1.47.8


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

  ** ‘herd status’ distinguishes between “stopped” and “one-shot” services
  ** ‘read-pid-file’ gracefully handles PID files not created atomically
     (<https://bugs.gnu.org/35550>)
  ** ‘shepherd’ no longer crashes when asked to load files with syntax errors
     (<https://bugs.gnu.org/35631>)
  ** New translations: de, sk
  ** Updated translations: da, es, fr, pt_BR


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

Ludovic, on behalf of the Shepherd herd.

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

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

* Re: GNU Shepherd 0.6.1 released
  2019-05-11 17:45 GNU Shepherd 0.6.1 released Ludovic Courtès
@ 2019-05-11 23:35 ` Arne Babenhauserheide
  2019-05-13  7:59   ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: Arne Babenhauserheide @ 2019-05-11 23:35 UTC (permalink / raw)
  To: guile-user; +Cc: guix-devel

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


Ludovic Courtès <ludo@gnu.org> writes:

> We are pleased to announce the GNU Shepherd version 0.6.1, a bug-fix
> release.

Congrats!

>   interface.  The GNU Shepherd may also be used by unprivileged users to
>   manage per-user daemons (e.g., tor, privoxy, mcron, etc.)

Is there a tutorial about using shepherd for per-user daemons? I don’t
really know how to start with it, but I would very much like to
move services from "just start this in ~/.bashrc" to shepherd.

Best wishes,
Arne
-- 
Unpolitisch sein
heißt politisch sein
ohne es zu merken

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

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

* Re: GNU Shepherd 0.6.1 released
  2019-05-11 23:35 ` Arne Babenhauserheide
@ 2019-05-13  7:59   ` Ludovic Courtès
  2019-05-13  8:04     ` Nala Ginrut
  0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2019-05-13  7:59 UTC (permalink / raw)
  To: Arne Babenhauserheide; +Cc: guix-devel, guile-user

Hi Arne,

Arne Babenhauserheide <arne_bab@web.de> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:

[...]

>>   interface.  The GNU Shepherd may also be used by unprivileged users to
>>   manage per-user daemons (e.g., tor, privoxy, mcron, etc.)
>
> Is there a tutorial about using shepherd for per-user daemons? I don’t
> really know how to start with it, but I would very much like to
> move services from "just start this in ~/.bashrc" to shepherd.

There’s no tutorial, but the manual has a couple of examples, and I
think it’s rather easy to get started.

Cheers,
Ludo’.

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

* Re: GNU Shepherd 0.6.1 released
  2019-05-13  7:59   ` Ludovic Courtès
@ 2019-05-13  8:04     ` Nala Ginrut
  2019-05-13 20:19       ` Arne Babenhauserheide
  0 siblings, 1 reply; 6+ messages in thread
From: Nala Ginrut @ 2019-05-13  8:04 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, Arne Babenhauserheide, Guile User

Hi Ludo!
First, congrats!
I saw it describes that "intended for use on GNU/Hurd", is it still
workable on GNU/Linux?

On Mon, May 13, 2019 at 3:59 PM Ludovic Courtès <ludo@gnu.org> wrote:
>
> Hi Arne,
>
> Arne Babenhauserheide <arne_bab@web.de> skribis:
>
> > Ludovic Courtès <ludo@gnu.org> writes:
>
> [...]
>
> >>   interface.  The GNU Shepherd may also be used by unprivileged users to
> >>   manage per-user daemons (e.g., tor, privoxy, mcron, etc.)
> >
> > Is there a tutorial about using shepherd for per-user daemons? I don’t
> > really know how to start with it, but I would very much like to
> > move services from "just start this in ~/.bashrc" to shepherd.
>
> There’s no tutorial, but the manual has a couple of examples, and I
> think it’s rather easy to get started.
>
> Cheers,
> Ludo’.
>

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

* Re: GNU Shepherd 0.6.1 released
  2019-05-13  8:04     ` Nala Ginrut
@ 2019-05-13 20:19       ` Arne Babenhauserheide
  2019-05-14  6:12         ` Nala Ginrut
  0 siblings, 1 reply; 6+ messages in thread
From: Arne Babenhauserheide @ 2019-05-13 20:19 UTC (permalink / raw)
  To: Nala Ginrut; +Cc: guix-devel, Ludovic Courtès, Guile User

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


Hi Nala Ginrut,

Nala Ginrut <nalaginrut@gmail.com> writes:
> I saw it describes that "intended for use on GNU/Hurd", is it still
> workable on GNU/Linux?

Since that’s where it’s mainly used: definitely yes.

Best wishes,
Arne
-- 
Unpolitisch sein
heißt politisch sein
ohne es zu merken

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

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

* Re: GNU Shepherd 0.6.1 released
  2019-05-13 20:19       ` Arne Babenhauserheide
@ 2019-05-14  6:12         ` Nala Ginrut
  0 siblings, 0 replies; 6+ messages in thread
From: Nala Ginrut @ 2019-05-14  6:12 UTC (permalink / raw)
  To: Arne Babenhauserheide; +Cc: guix-devel, Guile User

Thanks Arne!
I'm still trying to find a way to get rid of systemd for a certain
purpose, that's great!

On Tue, May 14, 2019 at 4:19 AM Arne Babenhauserheide <arne_bab@web.de> wrote:
>
>
> Hi Nala Ginrut,
>
> Nala Ginrut <nalaginrut@gmail.com> writes:
> > I saw it describes that "intended for use on GNU/Hurd", is it still
> > workable on GNU/Linux?
>
> Since that’s where it’s mainly used: definitely yes.
>
> Best wishes,
> Arne
> --
> Unpolitisch sein
> heißt politisch sein
> ohne es zu merken

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

end of thread, other threads:[~2019-05-14  6:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-11 17:45 GNU Shepherd 0.6.1 released Ludovic Courtès
2019-05-11 23:35 ` Arne Babenhauserheide
2019-05-13  7:59   ` Ludovic Courtès
2019-05-13  8:04     ` Nala Ginrut
2019-05-13 20:19       ` Arne Babenhauserheide
2019-05-14  6:12         ` Nala Ginrut

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).