mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
36b99556de
This is intended for modern init systems such as systemd, which manage many of the traditional aspects of daemon behavior themselves. (Bug#2677) * src/emacs.c (daemon_type): New integer. (usage, standard_args): Add --old-daemon and --new-daemon. (main): Handle --old-daemon and --new-daemon arguments. Restrict all the forking and complicated daemon stuff to old-daemon. (Fdaemon_initialized): Handle new-style daemon. * src/lisp.h (IS_DAEMON, DAEMON_RUNNING) [!WINDOWNT]: Replace daemon_pipe with daemon_type. * doc/emacs/cmdargs.texi (Initial Options): * doc/emacs/glossary.texi (Glossary): * doc/emacs/misc.texi (Emacs Server): * doc/lispref/display.texi (Window Systems): * doc/lispref/os.texi (Startup Summary): Related doc updates. * etc/NEWS: Mention this. * etc/emacs.service: Use Type=simple and --new-daemon.
18 lines
561 B
Desktop File
18 lines
561 B
Desktop File
## If your Emacs is installed in a non-standard location, you may need
|
|
## to copy this file to a standard directory, eg ~/.config/systemd/user/ .
|
|
## If you install this file by hand, change the "Exec" lines below
|
|
## to use absolute file names for the executables.
|
|
[Unit]
|
|
Description=Emacs text editor
|
|
Documentation=info:emacs man:emacs(1) https://gnu.org/software/emacs/
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=emacs --new-daemon
|
|
ExecStop=emacsclient --eval "(kill-emacs)"
|
|
Environment=SSH_AUTH_SOCK=%t/keyring/ssh
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=default.target
|