diff options
author | Runciter | 2025-04-27 00:38:59 +0800 |
---|---|---|
committer | Runciter | 2025-04-27 00:38:59 +0800 |
commit | 5627d080a3b7be0156e59977b43e82bdbd3c3ac4 (patch) | |
tree | d431bc7c5cf7d73de48636fc19d55a99fea43840 /whispers/services | |
parent | 9c8bf9b17587acdbd4775f78deeecbffde7d71e4 (diff) | |
download | whispers-5627d080a3b7be0156e59977b43e82bdbd3c3ac4.tar.gz |
Fix mistake with collected account service extensions.
M whispers/services/whispers.scm
Collect account-service-type services from whispers tree
into PID 1's account-service-type
Was incorrectly collecting them into rottlog-service-type
Diffstat (limited to 'whispers/services')
-rw-r--r-- | whispers/services/whispers.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whispers/services/whispers.scm b/whispers/services/whispers.scm index 53d0925..006dfb0 100644 --- a/whispers/services/whispers.scm +++ b/whispers/services/whispers.scm @@ -776,7 +776,7 @@ service given as its argument." (collect-compute profile-service-type)) (service-extension rottlog-service-type (collect-compute rottlog-service-type)) - (service-extension rottlog-service-type + (service-extension account-service-type (collect-compute account-service-type)) (service-extension mcron-service-type (collect-compute mcron-service-type)))) |