aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-publish.service.in
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-01-21 00:55:32 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2020-01-21 02:15:31 +0100
commitb56f2b6366a387ff42d7a33998f08527df60875e (patch)
tree29cc19969a3e684cd06db727ef83432a2dadac4a /etc/guix-publish.service.in
parent568bd2e3822b3ad6d8190f1dc04c5a6e43dcb2fa (diff)
downloadguix-b56f2b6366a387ff42d7a33998f08527df60875e.tar.gz
guix-b56f2b6366a387ff42d7a33998f08527df60875e.zip
gnu: express-beta-diversity: Update home page.
The original is not coming back: <https://github.com/dparks1134/ExpressBetaDiversity/issues/11>. * gnu/packages/bioinformatics.scm (express-beta-diversity)[home-page]: Use source code repository as home page.
Diffstat (limited to 'etc/guix-publish.service.in')
0 files changed, 0 insertions, 0 deletions
mmand): Remove explicit 'format' call; pass 'format' arguments as extra arguments to 'display-hint'. * gnu/services/monitoring.scm (zabbix-front-end-config): Likewise. * guix/scripts.scm (warn-about-disk-space): Likewise. * guix/scripts/build.scm (%standard-cross-build-options) (%standard-native-build-options): Likewise. * guix/scripts/describe.scm (display-checkout-info): Likewise. * guix/scripts/environment.scm (suggest-command-name): Likewise. * guix/scripts/home.scm (process-command): Likewise. * guix/scripts/home/edit.scm (service-type-not-found): Likewise. * guix/scripts/import.scm (guix-import): Likewise. * guix/scripts/package.scm (display-search-path-hint): Likewise. * guix/scripts/pull.scm (build-and-install): Likewise. * guix/scripts/shell.scm (auto-detect-manifest): Likewise. * guix/scripts/system.scm (check-file-system-availability): Likewise. (guix-system): Likewise. * guix/scripts/system/edit.scm (service-type-not-found): Likewise. * guix/status.scm (print-build-event): Likewise. 2022-12-12services: zabbix-server: Increase Shepherd grace period.Marius Bakke * gnu/services/monitoring.scm (zabbix-server-shepherd-service)[stop]: Add #:grace-period. 2022-12-07services: zabbix-agent: Adjust command-line when using zabbix_agent2.Marius Bakke * gnu/services/monitoring.scm (zabbix-agent-arguments): New procedure. (zabbix-agent-shepherd-service): Use that to determine command line arguments. 2022-12-07services: zabbix: Don't write user to configuration file.Marius Bakke The service already runs with the specified user and group, so there is no use in writing it to the configuration files. This change is mainly done for compatibility with 'zabbix-agent2' which does not understand the User= setting, but also to document the correct data type for the "group" setting. * gnu/services/monitoring.scm (serialize-string): Filter USER and GROUP fields. (group?, serialize-group): Remove variables. (zabbix-server-configuration, zabbix-agent-configuration): Document the GROUP field as 'string'. * doc/guix.texi (Monitoring Services): Adjust accordingly. 2022-11-17Fix problems initially introduced in commit 543d971ed2, now reinstated.Maxim Cournoyer Commit 543d971ed2 ("services: configuration: Re-order generated record fields") introduced two regressions, one in guix home and another one in the zabbix service. * gnu/home/services/shells.scm (home-bash-extensions): Remove the first pattern in the match, which used to be to ignore %location. * gnu/services/monitoring.scm (zabbix-front-end-nginx-extension): Likewise. 2022-11-17Revert "services: configuration: Revert to a working ‘guix home’."Maxim Cournoyer This reverts commit 39e4e00f75be8055300cb0afffb8bd4b4d35f2cc, with fixes for the guix home issues reported and another one found while reconfiguring berlin in the subsequent commit. 2022-11-13services: configuration: Revert to a working ‘guix home’.Tobias Geerinckx-Rice This reverts commit 543d971ed2a1d9eb934af1f51930741d7cc4e7ef, and its dependent commit 9b21cd2e9a614f1937769caf3917a791b151d841, which appear to have triggered a recent wave of ‘guix home’ regressions involving (services (list (service home-bash-service-type))): In gnu/home/services/shells.scm: 504:7 3 (home-bash-extensions #<<home-bash-configuration> package: #<package bash@5.1.8 gnu/packages/ba…> …) In unknown file: 2 (append #<<location> file: "…" line: 14 column: 12> ()) In ice-9/boot-9.scm: 1685:16 1 (raise-exception _ #:continuable? _) 1685:16 0 (raise-exception _ #:continuable? _) ice-9/boot-9.scm:1685:16: In procedure raise-exception: In procedure append: Wrong type argument in position 1 (expecting empty list): #<<location> file: "…" line: 14 column: 12> I should love to dive in & fix this rather than revert, but urgently need sleep. 2022-11-15services: configuration: Re-order generated record fields.Maxim Cournoyer This is so that the first field of the generated record matches the first one declared, which makes 'define-configuration' record API compatible with define-record-type* ones. * gnu/services/configuration.scm (define-configuration-helper): Move the %location field below the ones declared by the user. * gnu/services/monitoring.scm (zabbix-front-end-config): Adjust match pattern accordingly.