This commit is contained in:
2025-09-12 19:03:11 +03:00
parent bbb267eafd
commit 4c05645a50

View File

@@ -133,8 +133,8 @@ in
LoadCredential = ["client-secret:${oauthClientSecretFP}"];
ExecStart = lib.mkForce (pkgs.writeShellScript "run-mastodon-with-client-secret" ''
export CLIENT_SECRET=$(cat $CREDENTIALS_DIRECTORY/client-secret)
echo $CLIENT_SECRET # TODO: debug only option
${config.services.mastodon.package}/bin/puma -C config/puma.rb
echo -n $CLIENT_SECRET # TODO: debug only option
CLIENT_SECRET=$(cat $CREDENTIALS_DIRECTORY/client-secret) ${config.services.mastodon.package}/bin/puma -C config/puma.rb
'');
};
environment = {