3
0
Fork 0
forked from mirrors/nixpkgs

influxdb service: fixup postStart script to handle TLS

This commit is contained in:
Kranium Gikos 2017-09-18 19:56:30 +10:00 committed by Franz Pletz
parent b5a5d0ba84
commit 662b409b72

View file

@ -171,7 +171,7 @@ in
if [ "$(id -u)" = 0 ]; then chown -R ${cfg.user}:${cfg.group} ${cfg.dataDir}; fi
'';
postStart = mkBefore ''
until ${pkgs.curl.bin}/bin/curl -s -o /dev/null 'http://127.0.0.1${toString configOptions.http.bind-address}'/ping; do
until ${pkgs.curl.bin}/bin/curl -s -o /dev/null ${if configOptions.http.https-enabled then "-k https" else "http"}://127.0.0.1${toString configOptions.http.bind-address}/ping; do
sleep 1;
done
'';