pinoaffe writes: > * doc/guix.texi: Add documentation. > * gnu/services/ssh.scm (): New record type. > (mpd-service-type): New service type. > --- Not mpd-service-type. :-) Changed to: --8<---------------cut here---------------start------------->8--- gnu: Add AutoSSH service. * gnu/services/ssh.scm (): New record type. (autossh-service-type): New variable. (autossh-service-activation, autossh-file-name): New procedures. * doc/guix.texi (Networking Services): Document this. --8<---------------cut here---------------end--------------->8--- […] > +@lisp > +(autossh (autossh-configuration > + (user "pino") > + (ssh-options (list "-T" "-N" "-L" "8081:localhost:8081" "remote.net")))) > +@end lisp > +@end deffn … > +(define* (autossh-service #:optional (config (autossh-configuration))) > + "Run autossh with the given @var{config}, a @code{} > +object." > + (service autossh-service-type config)) > + Procedures like this ‘autossh-service’ are deprecated. I removed it and updated documentation accordingly. Pushed to master with those changes. Oleg.