Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 08fa4c694741
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c2be816ca8b9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 26, 2020

  1. Copy the full SHA
    a63f916 View commit details
  2. Merge pull request #78469 from eonpatapon/postfix-exporter

    nixos/prometheus-postfix-exporter: fix typo
    WilliButz authored Jan 26, 2020
    Copy the full SHA
    c2be816 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 nixos/modules/services/monitoring/prometheus/exporters/postfix.nix
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@ in
then "--systemd.slice ${cfg.systemd.slice}"
else "--systemd.unit ${cfg.systemd.unit}")
++ optional (cfg.systemd.enable && (cfg.systemd.journalPath != null))
"--systemd.jounal_path ${cfg.systemd.journalPath}"
"--systemd.journal_path ${cfg.systemd.journalPath}"
++ optional (!cfg.systemd.enable) "--postfix.logfile_path ${cfg.logfilePath}")}
'';
};