mirror of
https://github.com/Start9Labs/registry.git
synced 2026-03-26 10:21:51 +00:00
print check
This commit is contained in:
@@ -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."
|
||||
|
||||
@@ -49,7 +49,5 @@ doesSslNeedRenew cert = do
|
||||
renewSslCerts :: FilePath -> ReaderT RegistryCtx IO ()
|
||||
renewSslCerts cert = do
|
||||
domain <- asks $ registryHostname . appSettings
|
||||
liftIO $ putStrLn $ "DOMAIN: " <> domain
|
||||
liftIO $ putStrLn $ "CERT: " <> cert
|
||||
void . liftIO $ system [i|certbot renew|]
|
||||
void . liftIO $ system [i|cp /etc/letsencrypt/live/#{domain}/fullchain.pem #{cert}|]
|
||||
|
||||
Reference in New Issue
Block a user