Unverified Commit 717c708d authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

Merge pull request #325704 from therishidesai/rdesai/atop-2.10.0

atop: 2.8.1 -> 2.10.0
parents 468cac1a c200802d
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
diff --git a/atop.service b/atop.service
index 6b11dea..f90935f 100644
--- a/atop.service
+++ b/atop.service
@@ -9,5 +9,6 @@
 Environment=LOGPATH=/var/log/atop
@@ -8,10 +8,10 @@ Environment="LOGOPTS="
 Environment="LOGINTERVAL=600"
 Environment="LOGGENERATIONS=28"
 Environment="LOGPATH=/var/log/atop"
-EnvironmentFile=/etc/default/atop
+EnvironmentFile=-/etc/default/atop
 ExecStartPre=/bin/sh -c 'test -d "${LOGPATH}" || mkdir -p "${LOGPATH}"'
 ExecStartPre=/bin/sh -c 'test -n "$LOGINTERVAL" -a "$LOGINTERVAL" -eq "$LOGINTERVAL"'
 ExecStartPre=/bin/sh -c 'test -n "$LOGGENERATIONS" -a "$LOGGENERATIONS" -eq "$LOGGENERATIONS"'
+ExecStartPre=/bin/sh -c 'mkdir -p "${LOGPATH}"'
 ExecStart=/bin/sh -c 'exec @out@/bin/atop ${LOGOPTS} -w "${LOGPATH}/atop_$(date +%%Y%%m%%d)" ${LOGINTERVAL}'
 ExecStartPost=@findutils@/bin/find "${LOGPATH}" -name "atop_*" -mtime +${LOGGENERATIONS} -exec rm -v {} \;
 KillSignal=SIGUSR2
+0 −7
Original line number Diff line number Diff line
--- a/atopacct.service
+++ b/atopacct.service
@@ -9,3 +9,3 @@
 Type=forking
-PIDFile=/var/run/atopacctd.pid
+PIDFile=/run/atopacctd.pid
 ExecStart=@out@/bin/atopacctd
+6 −4
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchurl
, glib
, zlib
, ncurses
, pkg-config
, findutils
, systemd
, python3
@@ -12,11 +14,11 @@

stdenv.mkDerivation rec {
  pname = "atop";
  version = "2.8.1";
  version = "2.10.0";

  src = fetchurl {
    url = "https://www.atoptool.nl/download/atop-${version}.tar.gz";
    sha256 = "sha256-lwBYoZt5w0RPlx+FRXKg5jiR3C1fcDf/g3VwhUzg2h4=";
    hash = "sha256-56ZzzyyCV4592C7LDeyD/Z7LMIKLJWHCip+lqvddX5M=";
  };

  nativeBuildInputs = lib.optionals withAtopgpu [
@@ -24,8 +26,10 @@ stdenv.mkDerivation rec {
  ];

  buildInputs = [
    glib
    zlib
    ncurses
    pkg-config
  ] ++ lib.optionals withAtopgpu [
    python3
  ];
@@ -51,8 +55,6 @@ stdenv.mkDerivation rec {
    ./fix-paths.patch
    # Don't fail on missing /etc/default/atop, make sure /var/log/atop exists pre-start
    ./atop.service.patch
    # Specify PIDFile in /run, not /var/run to silence systemd warning
    ./atopacct.service.patch
  ];

  preConfigure = ''
+53 −33
Original line number Diff line number Diff line
diff --git a/atop-pm.sh b/atop-pm.sh
index 3ff4ab5..c433b1a 100755
--- a/atop-pm.sh
+++ b/atop-pm.sh
@@ -1,10 +1,10 @@
 #!/bin/sh
 
 case "$1" in
-	pre)	/usr/bin/systemctl stop atop
+	pre)	@systemd@/bin/systemctl stop atop
 		exit 0
 		;;
-	post)	/usr/bin/systemctl start atop
+	post)	@systemd@/bin/systemctl start atop
 		exit 0
 		;;
  	*)	exit 1
diff --git a/atop-rotate.service b/atop-rotate.service
index dbe8e0f..4eaa84d 100644
--- a/atop-rotate.service
+++ b/atop-rotate.service
@@ -4,4 +4,4 @@ Documentation=man:atop(1)
 
 [Service]
 Type=oneshot
-ExecStart=/usr/bin/systemctl restart atop.service
+ExecStart=@systemd@/bin/systemctl restart atop.service
diff --git a/atop.service b/atop.service
index 3e5bafd..6b11dea 100644
--- a/atop.service
+++ b/atop.service
@@ -12,4 +12,4 @@
@@ -12,8 +12,8 @@ EnvironmentFile=/etc/default/atop
 ExecStartPre=/bin/sh -c 'test -d "${LOGPATH}" || mkdir -p "${LOGPATH}"'
 ExecStartPre=/bin/sh -c 'test -n "$LOGINTERVAL" -a "$LOGINTERVAL" -eq "$LOGINTERVAL"'
 ExecStartPre=/bin/sh -c 'test -n "$LOGGENERATIONS" -a "$LOGGENERATIONS" -eq "$LOGGENERATIONS"'
-ExecStart=/bin/sh -c 'exec /usr/bin/atop ${LOGOPTS} -w "${LOGPATH}/atop_$(date +%%Y%%m%%d)" ${LOGINTERVAL}'
-ExecStartPost=/usr/bin/find "${LOGPATH}" -name "atop_*" -mtime +${LOGGENERATIONS} -exec rm -v {} \;
@@ -8,17 +39,26 @@
+ExecStartPost=@findutils@/bin/find "${LOGPATH}" -name "atop_*" -mtime +${LOGGENERATIONS} -exec rm -v {} \;
 KillSignal=SIGUSR2
 
--- a/atop-rotate.service
+++ b/atop-rotate.service
@@ -4,3 +4,3 @@
 [Service]
 Type=oneshot
-ExecStart=/usr/bin/systemctl try-restart atop.service
+ExecStart=@systemd@/bin/systemctl try-restart atop.service
 [Install]
diff --git a/atopacct.service b/atopacct.service
index 3aa529d..b95db43 100644
--- a/atopacct.service
+++ b/atopacct.service
@@ -7,7 +7,7 @@ Before=atop.service
 Type=forking
 PIDFile=/run/atopacctd.pid
 ExecStartPre=/bin/sh -c 'if systemctl -q is-active acct psacct; then echo "Process accounting already in use by (ps)acct"; exit 1; fi'
-ExecStart=/usr/sbin/atopacctd
+ExecStart=@out@/bin/atopacctd
 
 [Install]
 WantedBy=multi-user.target
diff --git a/atopgpu.service b/atopgpu.service
index 4839235..8aae1c5 100644
--- a/atopgpu.service
+++ b/atopgpu.service
@@ -6,5 +6,5 @@
@@ -4,7 +4,7 @@ Documentation=man:atopgpud(8)
 Before=atop.service
 
 [Service]
-ExecStart=/usr/sbin/atopgpud
@@ -26,23 +66,3 @@
 Type=oneshot
 RemainAfterExit=yes
 
--- a/atopacct.service
+++ b/atopacct.service
@@ -10,3 +10,3 @@
 PIDFile=/var/run/atopacctd.pid
-ExecStart=/usr/sbin/atopacctd
+ExecStart=@out@/bin/atopacctd

--- a/atop-pm.sh
+++ b/atop-pm.sh
@@ -2,8 +2,8 @@

 case "$1" in
-	pre)	/usr/bin/systemctl stop atop
+	pre)	@systemd@/bin/systemctl stop atop
 		exit 0
 		;;
-	post)	/usr/bin/systemctl start atop
+	post)	@systemd@/bin/systemctl start atop
 		exit 0
 		;;