2016-11-24 08:23:11 +00:00
|
|
|
# This is a "service unit file" for the systemd init system to launch
|
|
|
|
# 'guix publish'. Drop it in /etc/systemd/system or similar to have
|
|
|
|
# 'guix publish' automatically started.
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=Publish the GNU Guix store
|
2021-02-09 14:10:52 +00:00
|
|
|
Requires=guix-daemon.service
|
|
|
|
PartOf=guix-daemon.service
|
|
|
|
After=guix-daemon.service
|
2016-11-24 08:23:11 +00:00
|
|
|
|
|
|
|
[Service]
|
2018-10-21 20:22:13 +00:00
|
|
|
ExecStart=@localstatedir@/guix/profiles/per-user/root/current-guix/bin/guix publish --user=nobody --port=8181
|
2019-06-03 18:42:16 +00:00
|
|
|
Environment='GUIX_LOCPATH=@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8
|
2016-11-24 08:23:11 +00:00
|
|
|
StandardOutput=syslog
|
|
|
|
StandardError=syslog
|
|
|
|
|
2022-10-23 00:00:02 +00:00
|
|
|
# Despite the name, this is rate-limited: a broken daemon will eventually fail.
|
|
|
|
Restart=always
|
|
|
|
|
2016-11-24 08:23:11 +00:00
|
|
|
# See <https://lists.gnu.org/archive/html/guix-devel/2016-04/msg00608.html>.
|
|
|
|
TasksMax=1024
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|