print check

This commit is contained in:
Keagan McClelland
2020-08-04 15:50:42 -06:00
parent b26ad51ba2
commit 949f2f867c
2 changed files with 2 additions and 2 deletions

View File

@@ -183,6 +183,8 @@ startApp foundation = do
-- certbot renew loop
void . forkIO $ forever $ do
putStrLn $ "DOMAIN: " <> registryHostname (appSettings foundation)
putStrLn $ "CERT: " <> sslCertLocation (appSettings foundation)
shouldRenew <- doesSslNeedRenew (sslCertLocation $ appSettings foundation)
when shouldRenew $ do
putStrLn @Text "Renewing SSL Certs."