all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Announcing shepherd-run
@ 2024-11-03 13:19 Efraim Flashner
  2024-11-03 15:57 ` Denis 'GNUtoo' Carikli
  0 siblings, 1 reply; 6+ messages in thread
From: Efraim Flashner @ 2024-11-03 13:19 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 899 bytes --]

Announcing the initial release of shepherd-run!

Do you have experience with systemd and systemd-run? Do you wish you
were able to quickly and easily add a simple service to your (user or
system) shepherd instance?

Using the finest technologies from the 70's, written in gawk, I present
shepherd-run!

Want to build a derivation but don't care when it finishes?
shepherd-run -e 'guix build /gnu/store/...-drv'

Need to clear up some room in your store but don't want to dedicate a
terminal to waiting for it to finish?
shepherd-run -e "guix gc"

Want to spam your shepherd logs?
'shepherd run --exec yes'

Get ready, it's coming soon to a guix repository near you!

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #1.2: 0001-gnu-Add-shepherd-run.patch --]
[-- Type: text/plain, Size: 3508 bytes --]

From 0987a56039f9626664f89095b292421081daddae Mon Sep 17 00:00:00 2001
Message-ID: <0987a56039f9626664f89095b292421081daddae.1730639824.git.efraim@flashner.co.il>
From: Efraim Flashner <efraim@flashner.co.il>
Date: Sun, 3 Nov 2024 15:16:11 +0200
Subject: [PATCH] gnu: Add shepherd-run.

* gnu/packages/admin.scm (shepherd-run): New variable.

Change-Id: I4b08c84f83bcc588db7a11619321f4c8dee48257
---
 gnu/packages/admin.scm | 42 +++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 41 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 88d68a3afcc..575b00736fe 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -9,7 +9,7 @@
 ;;; Copyright © 2016, 2017, 2020 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
 ;;; Copyright © 2016, 2017, 2023 Ricardo Wurmus <rekado@elephly.net>
-;;; Copyright © 2016-2023 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016-2024 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 Peter Feigl <peter.feigl@nexoid.at>
 ;;; Copyright © 2016 John J. Foerch <jjfoerch@earthlink.net>
 ;;; Copyright © 2016, 2017 Nikita <nikita@n0.is>
@@ -423,6 +423,46 @@ (define-public guile2.2-shepherd
     (native-inputs (list pkg-config guile-2.2))
     (inputs (list guile-2.2 guile2.2-fibers))))
 
+(define-public shepherd-run
+  (package
+    (name "shepherd-run")
+    (version "0.1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~efraim/shepherd-run")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "033l8ignsrr6p2wgwcyqlswpbf58kyl8cf7zwkz028gqfq4arkr8"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list
+       #:make-flags #~(list (string-append "PREFIX=" #$output))
+       #:phases
+       #~(modify-phases %standard-phases
+           (delete 'configure)          ; No configure script.
+           ;; First 'check checks the shell script which loads the gawk code.
+           ;; This 'check checks the installed gawk script.
+           (add-after 'patch-shebangs 'check-again
+             (lambda args
+               (apply (assoc-ref %standard-phases 'check)
+                      (append args
+                              (list #:make-flags
+                                    (list (string-append "BINARY=" %output
+                                                         "/bin/shepherd-run"))))))))))
+    (native-inputs (list diffutils help2man))
+    (inputs (list gawk))
+    (synopsis "Create GNU Shepherd services from the command line")
+    (description
+     "Shepherd-run is a script which assists in creating one-off shepherd
+services from the command line.  It is meant to partially fill the void left
+by @command{systemd-run}, since GNU Guix uses GNU Shepherd as its system service
+manager.")
+    (home-page "https://git.sr.ht/~efraim/shepherd-run")
+    (license license:gpl3+)))
+
 (define-public swineherd
   (package
     (name "swineherd")

base-commit: 8964dfdb84f7d21dbc89c217ca4f4546a15990af
-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted


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

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

* Re: Announcing shepherd-run
  2024-11-03 13:19 Announcing shepherd-run Efraim Flashner
@ 2024-11-03 15:57 ` Denis 'GNUtoo' Carikli
  2024-11-03 18:18   ` Efraim Flashner
  0 siblings, 1 reply; 6+ messages in thread
From: Denis 'GNUtoo' Carikli @ 2024-11-03 15:57 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

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

Hi,

On Sun, 3 Nov 2024 15:19:04 +0200
Efraim Flashner <efraim@flashner.co.il> wrote:

> Announcing the initial release of shepherd-run!
> 
> Do you have experience with systemd and systemd-run? Do you wish you
> were able to quickly and easily add a simple service to your (user or
> system) shepherd instance?
> 
> Using the finest technologies from the 70's, written in gawk, I
> present shepherd-run!
Is there any plans to integrate that with Guix and Shepherd later on?

I'm thinking of uses cases like netctl which is an utility from Arch
Linux that is present in Parabola. Users define network profiles and
netctl somehow interact with systemd to setup the network.

Here for instance Guix system services or Guix home services are not
dynamic, and especially for the network it could make sense to have
different profiles.

As I understand netctl generates systemd unit files, so there is
also some similarities between netctl and shepherd-run.

Denis.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: Announcing shepherd-run
  2024-11-03 15:57 ` Denis 'GNUtoo' Carikli
@ 2024-11-03 18:18   ` Efraim Flashner
  2024-11-04 22:34     ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: Efraim Flashner @ 2024-11-03 18:18 UTC (permalink / raw)
  To: Denis 'GNUtoo' Carikli; +Cc: guix-devel

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

On Sun, Nov 03, 2024 at 04:57:09PM +0100, Denis 'GNUtoo' Carikli wrote:
> Hi,
> 
> On Sun, 3 Nov 2024 15:19:04 +0200
> Efraim Flashner <efraim@flashner.co.il> wrote:
> 
> > Announcing the initial release of shepherd-run!
> > 
> > Do you have experience with systemd and systemd-run? Do you wish you
> > were able to quickly and easily add a simple service to your (user or
> > system) shepherd instance?
> > 
> > Using the finest technologies from the 70's, written in gawk, I
> > present shepherd-run!
> Is there any plans to integrate that with Guix and Shepherd later on?

If it proves to be useful I could see re-writing it in guile so it can
be part of shepherd directly.

> I'm thinking of uses cases like netctl which is an utility from Arch
> Linux that is present in Parabola. Users define network profiles and
> netctl somehow interact with systemd to setup the network.
> 
> Here for instance Guix system services or Guix home services are not
> dynamic, and especially for the network it could make sense to have
> different profiles.
> 
> As I understand netctl generates systemd unit files, so there is
> also some similarities between netctl and shepherd-run.
> 
> Denis.

Looking at some of the manpages for systemd I saw they have options for
on-joining or leaving certain networks and other triggers. I don't
believe shepherd currently has the ability to detect that directly
currently, but I suppose it would be possible to imitate that
functionality.


-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

* Re: Announcing shepherd-run
  2024-11-03 18:18   ` Efraim Flashner
@ 2024-11-04 22:34     ` Ludovic Courtès
  2024-11-05 10:59       ` Efraim Flashner
  0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2024-11-04 22:34 UTC (permalink / raw)
  To: Denis 'GNUtoo' Carikli; +Cc: guix-devel, Efraim Flashner

Hello,

Efraim Flashner <efraim@flashner.co.il> skribis:

> On Sun, Nov 03, 2024 at 04:57:09PM +0100, Denis 'GNUtoo' Carikli wrote:
>> Hi,
>> 
>> On Sun, 3 Nov 2024 15:19:04 +0200
>> Efraim Flashner <efraim@flashner.co.il> wrote:
>> 
>> > Announcing the initial release of shepherd-run!
>> > 
>> > Do you have experience with systemd and systemd-run? Do you wish you
>> > were able to quickly and easily add a simple service to your (user or
>> > system) shepherd instance?
>> > 
>> > Using the finest technologies from the 70's, written in gawk, I
>> > present shepherd-run!

An interesting blend of technologies from the 70’s.  :-)

>> Is there any plans to integrate that with Guix and Shepherd later on?
>
> If it proves to be useful I could see re-writing it in guile so it can
> be part of shepherd directly.

Shepherd 1.0-to-be (current ‘devel’ branch) gained a generic ‘timer’
service that does the job the ‘at’ command would do back in the day
(before the advent of CD-ROM and the information superhighway):

  herd schedule timer at 07:00 -- mpg123 alarm.mp3

We’re talking about something quite similar, just not delayed, right?

Ludo’.


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

* Re: Announcing shepherd-run
  2024-11-04 22:34     ` Ludovic Courtès
@ 2024-11-05 10:59       ` Efraim Flashner
  2024-11-09 22:48         ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: Efraim Flashner @ 2024-11-05 10:59 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Denis 'GNUtoo' Carikli, guix-devel

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

On Mon, Nov 04, 2024 at 11:34:50PM +0100, Ludovic Courtès wrote:
> Hello,
> 
> Efraim Flashner <efraim@flashner.co.il> skribis:
> 
> > On Sun, Nov 03, 2024 at 04:57:09PM +0100, Denis 'GNUtoo' Carikli wrote:
> >> Hi,
> >> 
> >> On Sun, 3 Nov 2024 15:19:04 +0200
> >> Efraim Flashner <efraim@flashner.co.il> wrote:
> >> 
> >> > Announcing the initial release of shepherd-run!
> >> > 
> >> > Do you have experience with systemd and systemd-run? Do you wish you
> >> > were able to quickly and easily add a simple service to your (user or
> >> > system) shepherd instance?
> >> > 
> >> > Using the finest technologies from the 70's, written in gawk, I
> >> > present shepherd-run!
> 
> An interesting blend of technologies from the 70’s.  :-)
> 
> >> Is there any plans to integrate that with Guix and Shepherd later on?
> >
> > If it proves to be useful I could see re-writing it in guile so it can
> > be part of shepherd directly.
> 
> Shepherd 1.0-to-be (current ‘devel’ branch) gained a generic ‘timer’
> service that does the job the ‘at’ command would do back in the day
> (before the advent of CD-ROM and the information superhighway):
> 
>   herd schedule timer at 07:00 -- mpg123 alarm.mp3
> 
> We’re talking about something quite similar, just not delayed, right?

systemd-run has a --timer flag, and I could see adding a flag for
shepherd-run after shepherd 1.0.

To me the big thing systemd-run brought was being able to launch
programs from the shell and have it show up in `systemctl --user
services`, and I'd like to be able to get commands I run from the CLI to
show up in `herd status` the same way.

systemd has some more magic I wanted to steal, like being able to launch
GUI applications from systemd-run.

shepherd-run basically parses the flags and commands and then writes out
a service to a temporary file and loads it with 'herd load root ...'

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

* Re: Announcing shepherd-run
  2024-11-05 10:59       ` Efraim Flashner
@ 2024-11-09 22:48         ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2024-11-09 22:48 UTC (permalink / raw)
  To: Denis 'GNUtoo' Carikli; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> skribis:

> On Mon, Nov 04, 2024 at 11:34:50PM +0100, Ludovic Courtès wrote:

[...]

>> Shepherd 1.0-to-be (current ‘devel’ branch) gained a generic ‘timer’
>> service that does the job the ‘at’ command would do back in the day
>> (before the advent of CD-ROM and the information superhighway):
>> 
>>   herd schedule timer at 07:00 -- mpg123 alarm.mp3
>> 
>> We’re talking about something quite similar, just not delayed, right?
>
> systemd-run has a --timer flag, and I could see adding a flag for
> shepherd-run after shepherd 1.0.
>
> To me the big thing systemd-run brought was being able to launch
> programs from the shell and have it show up in `systemctl --user
> services`, and I'd like to be able to get commands I run from the CLI to
> show up in `herd status` the same way.

Easy.  :-)  That’s really what ‘herd schedule timer’ does, except it’s
delayed.

> systemd has some more magic I wanted to steal, like being able to launch
> GUI applications from systemd-run.

Trickier I guess, because you need to pass DISPLAY etc.

Food for thought!

Ludo’.


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

end of thread, other threads:[~2024-11-09 22:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-03 13:19 Announcing shepherd-run Efraim Flashner
2024-11-03 15:57 ` Denis 'GNUtoo' Carikli
2024-11-03 18:18   ` Efraim Flashner
2024-11-04 22:34     ` Ludovic Courtès
2024-11-05 10:59       ` Efraim Flashner
2024-11-09 22:48         ` Ludovic Courtès

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.