2022-04-15 01:41:22 +00:00
|
|
|
From 47c651f97acae814d4ff679ae04d78d4532cbca6 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-01-13 20:06:32 +00:00
|
|
|
Subject: [PATCH 15/19] systemd-sleep: execute scripts in
|
2020-04-24 23:36:52 +00:00
|
|
|
/etc/systemd/system-sleep
|
|
|
|
|
|
|
|
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
|
2022-04-15 01:41:22 +00:00
|
|
|
index 7064f3a905..b60ced9d9b 100644
|
2020-04-24 23:36:52 +00:00
|
|
|
--- a/src/sleep/sleep.c
|
|
|
|
+++ b/src/sleep/sleep.c
|
2021-09-26 12:46:18 +00:00
|
|
|
@@ -182,6 +182,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
|
|
|
|
};
|
|
|
|
|
|
|
|
--
|
2022-04-15 01:41:22 +00:00
|
|
|
2.34.0
|
2020-04-24 23:36:52 +00:00
|
|
|
|