mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
5d41d5775c
Closes #1873
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
# This module sets up solr with one core. It is a bit tedious…. If you
|
|
# know a better solution, please let me know.
|
|
{
|
|
nixpkgs.config = {
|
|
permittedInsecurePackages = [
|
|
"solr-8.6.3"
|
|
];
|
|
};
|
|
|
|
services.solr = {
|
|
enable = true;
|
|
};
|
|
# This is needed to run solr script as user solr
|
|
users.users.solr.useDefaultShell = true;
|
|
|
|
systemd.services.solr-init =
|
|
let
|
|
solrPort = toString config.services.solr.port;
|
|
initSolr = ''
|
|
if [ ! -f ${config.services.solr.stateDir}/docspell_core ]; then
|
|
while ! echo "" | ${pkgs.inetutils}/bin/telnet localhost ${solrPort}
|
|
do
|
|
echo "Waiting for SOLR become ready..."
|
|
sleep 1.5
|
|
done
|
|
${pkgs.su}/bin/su -s ${pkgs.bash}/bin/sh solr -c "${pkgs.solr}/bin/solr create_core -c docspell -p ${solrPort}";
|
|
touch ${config.services.solr.stateDir}/docspell_core
|
|
fi
|
|
'';
|
|
in
|
|
{
|
|
script = initSolr;
|
|
after = [ "solr.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
requires = [ "solr.target" ];
|
|
description = "Create a core at solr";
|
|
};
|
|
|
|
}
|