2022-08-12 12:06:08 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-04-24 23:36:52 +00:00
|
|
|
From: Nikolay Amiantov <ab@fmap.me>
|
|
|
|
Date: Thu, 25 Jul 2019 20:46:58 +0300
|
2022-08-12 12:06:08 +00:00
|
|
|
Subject: [PATCH] systemd-sleep: execute scripts in /etc/systemd/system-sleep
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
This is needed for NixOS to use such scripts as systemd directory is immutable.
|
|
|
|
---
|
|
|
|
src/sleep/sleep.c | 1 +
|
|
|
|
1 file changed, 1 insertion(+)
|
|
|
|
|
|
|
|
diff --git a/src/sleep/sleep.c b/src/sleep/sleep.c
|
2023-10-09 19:29:22 +00:00
|
|
|
index de1f6c7ec1..d0cdebd80a 100644
|
2020-04-24 23:36:52 +00:00
|
|
|
--- a/src/sleep/sleep.c
|
|
|
|
+++ b/src/sleep/sleep.c
|
2023-10-09 19:29:22 +00:00
|
|
|
@@ -224,6 +224,7 @@ static int execute(
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
static const char* const dirs[] = {
|
|
|
|
SYSTEM_SLEEP_PATH,
|
|
|
|
+ "/etc/systemd/system-sleep",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|