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: 7e7ef31f9e01
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4cd2cb43fb3a
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 14, 2019

  1. nixos/smokeping: replace smokeping.fcgi with a symlink

    This fixes a regression from bb649d9.
    There were permission problems, when the preStart script tried to copy
    the smokeping.fcgi file over the old file.
    erictapen committed Oct 14, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    9eb067b View commit details
  2. Copy the full SHA
    b8cd11f View commit details

Commits on Oct 23, 2019

  1. Merge pull request #71137 from erictapen/smokeping-fix-permission

    nixos/smokeping: replace smokeping.fcgi with a symlink
    wizeman authored Oct 23, 2019
    Copy the full SHA
    4cd2cb4 View commit details
Showing with 5 additions and 1 deletion.
  1. +4 −1 nixos/modules/services/networking/smokeping.nix
  2. +1 −0 pkgs/tools/networking/smokeping/default.nix
5 changes: 4 additions & 1 deletion nixos/modules/services/networking/smokeping.nix
Original file line number Diff line number Diff line change
@@ -299,7 +299,8 @@ in
mkdir -m 0755 -p ${smokepingHome}/cache ${smokepingHome}/data
rm -f ${smokepingHome}/cropper
ln -s ${cfg.package}/htdocs/cropper ${smokepingHome}/cropper
cp ${cgiHome} ${smokepingHome}/smokeping.fcgi
rm -f ${smokepingHome}/smokeping.fcgi
ln -s ${cgiHome} ${smokepingHome}/smokeping.fcgi
${cfg.package}/bin/smokeping --check --config=${configPath}
${cfg.package}/bin/smokeping --static --config=${configPath}
'';
@@ -314,5 +315,7 @@ in
serviceConfig.Restart = "always";
};
};

meta.maintainers = with lib.maintainers; [ erictapen ];
}

1 change: 1 addition & 0 deletions pkgs/tools/networking/smokeping/default.nix
Original file line number Diff line number Diff line change
@@ -19,5 +19,6 @@ stdenv.mkDerivation rec {
homepage = http://oss.oetiker.ch/smokeping;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.erictapen ];
};
}