diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-08-31 14:54:52 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-08-31 15:50:35 +0200 |
commit | a4e81ff325aa1e0381ec73a57e41a208317b60d6 (patch) | |
tree | 48bb33f7a3b7ffc30ea2c2c2e4d1ff3ecf1fdeeb | |
parent | 7eeb78157d3d0267ce4a4ea38ff56a2c4246c11b (diff) | |
download | guix-a4e81ff325aa1e0381ec73a57e41a208317b60d6.tar guix-a4e81ff325aa1e0381ec73a57e41a208317b60d6.tar.gz |
guix system: reconfigure: Tell users about 'herd status'.
* guix/scripts/system.scm (perform-action): Mention 'herd status' when
'upgrade-shepherd-services' completes.
-rw-r--r-- | guix/scripts/system.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index f6d20382b6..7d6fc63a98 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -835,7 +835,9 @@ static checks." (upgrade-shepherd-services local-eval os) (return (format #t (G_ "\ To complete the upgrade, run 'herd restart SERVICE' to stop, -upgrade, and restart each service that was not automatically restarted.\n")))))) +upgrade, and restart each service that was not automatically restarted.\n"))) + (return (format #t (G_ "\ +Run 'herd status' to view the list of services on your system.\n")))))) ((init) (newline) (format #t (G_ "initializing operating system under '~a'...~%") |