lol
1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2From: Nikolay Amiantov <ab@fmap.me>
3Date: Thu, 25 Jul 2019 20:45:55 +0300
4Subject: [PATCH] systemd-shutdown: execute scripts in
5 /etc/systemd/system-shutdown
6
7This is needed for NixOS to use such scripts as systemd directory is immutable.
8---
9 src/shutdown/shutdown.c | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/src/shutdown/shutdown.c b/src/shutdown/shutdown.c
13index b976b7d8cf..b1c02df6fd 100644
14--- a/src/shutdown/shutdown.c
15+++ b/src/shutdown/shutdown.c
16@@ -336,6 +336,7 @@ static void init_watchdog(void) {
17 int main(int argc, char *argv[]) {
18 static const char* const dirs[] = {
19 SYSTEM_SHUTDOWN_PATH,
20+ "/etc/systemd/system-shutdown",
21 NULL
22 };
23 _cleanup_free_ char *cgroup = NULL;