argononed: unstable-2022-03-25 -> 0.4.1-unstable-2025-12-26 (#481187)

This commit is contained in:
Peder Bergebakken Sundt
2026-01-24 20:01:36 +00:00
committed by GitHub
2 changed files with 19 additions and 20 deletions
@@ -1,18 +1,18 @@
--- a/src/argononed.c
+++ b/src/argononed.c
@@ -783,13 +783,13 @@
{
log_message(LOG_DEBUG, "EXEC REBOOT");
sync();
- system("/sbin/reboot");
+ system("/run/current-system/sw/bin/reboot");
}
if (count >= 39 && count <= 41)
{
log_message(LOG_DEBUG, "EXEC SHUTDOWN");
sync();
- system("/sbin/poweroff");
+ system("/run/current-system/sw/bin/poweroff");
}
#else
log_message(LOG_INFO,"Daemon Ready");
@@ -665,13 +665,13 @@
{
log_message(LOG_DEBUG, "EXEC REBOOT");
sync();
- system("/sbin/reboot");
+ system("reboot");
}
if (count >= 39 && count <= 41)
{
log_message(LOG_DEBUG, "EXEC SHUTDOWN");
sync();
- system("/sbin/poweroff");
+ system("poweroff");
}
} else {
log_message(LOG_INFO + LOG_BOLD,"Daemon Ready");
+3 -4
View File
@@ -5,16 +5,15 @@
dtc,
installShellFiles,
}:
stdenv.mkDerivation {
pname = "argononed";
version = "unstable-2022-03-26";
version = "0.4.1-unstable-2025-12-26";
src = fetchFromGitLab {
owner = "DarkElvenAngel";
repo = "argononed";
rev = "97c4fa07fc2c09ffc3bd86e0f6319d50fa639578";
hash = "sha256-5/xUYbprRiwD+FN8V2cUpHxnTbBkEsFG2wfsEXrCrgQ=";
rev = "34d70b3bb1b2a8ba4b146ba7d9962dd0d925e67e";
hash = "sha256-f7YGoky4C5P/Iyez3kuLEKU/yWKZ4Dh6Cy//PAKMYuU=";
};
patches = [ ./fix-hardcoded-reboot-poweroff-paths.patch ];