2021-12-06 16:07:01 +00:00
|
|
|
From 6124720aa2b9dbc07f2fb898f0db150a44a86041 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
|
2021-12-06 16:07:01 +00:00
|
|
|
Subject: [PATCH 15/21] 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
|
2021-09-26 12:46:18 +00:00
|
|
|
index a3aeb24633..0ed6a34d79 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
|
|
|
|
};
|
|
|
|
|
|
|
|
--
|
2021-12-06 16:07:01 +00:00
|
|
|
2.33.0
|
2020-04-24 23:36:52 +00:00
|
|
|
|