bees: 0.6.3 -> 0.6.5

Change-Id: I1866eab9c348d9c10219290ecba698121a32d128
This commit is contained in:
ElXreno 2021-06-05 16:55:12 +03:00
parent a3fa2cf7c2
commit 7b9df38982
No known key found for this signature in database
GPG key ID: 684214850DBE3423
2 changed files with 5 additions and 4 deletions

View file

@ -104,10 +104,11 @@ in
configOptsStr = escapeShellArgs configOpts;
in
{
# Values from https://github.com/Zygo/bees/blob/v0.6.1/scripts/beesd@.service.in
# Values from https://github.com/Zygo/bees/blob/v0.6.5/scripts/beesd@.service.in
ExecStart = "${pkgs.bees}/bin/bees-service-wrapper run ${configOptsStr} -- --no-timestamps ${escapeShellArgs fs.extraOptions}";
ExecStopPost = "${pkgs.bees}/bin/bees-service-wrapper cleanup ${configOptsStr}";
CPUAccounting = true;
CPUSchedulingPolicy = "batch";
CPUWeight = 12;
IOSchedulingClass = "idle";
IOSchedulingPriority = 7;
@ -119,7 +120,7 @@ in
Restart = "on-abnormal";
StartupCPUWeight = 25;
StartupIOWeight = 25;
SyslogIdentifier = "bees"; # would otherwise be "bees-service-wrapper"
SyslogIdentifier = "beesd"; # would otherwise be "bees-service-wrapper"
};
wantedBy = [ "multi-user.target" ];
})

View file

@ -14,13 +14,13 @@ let
bees = stdenv.mkDerivation rec {
pname = "bees";
version = "0.6.3";
version = "0.6.5";
src = fetchFromGitHub {
owner = "Zygo";
repo = "bees";
rev = "v${version}";
sha256 = "sha256-brEjr7lhmKDCIDeLq+XP+ZTxv1RvwoUlszMSEYygxv8=";
sha256 = "11ppbf23b8ngzfy02am0skxlybzmgsp6kna21jimb01x9pp1q7l7";
};
buildInputs = [