Skip to content

Commit

Permalink
first line
Browse files Browse the repository at this point in the history
  • Loading branch information
awb99 committed Jan 9, 2025
1 parent 6e4e861 commit af5a34f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/modular/webserver/https/letsencrypt.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(ns modular.webserver.https.letsencrypt
(:require
[clojure.string :as str]
[taoensso.timbre :as timbre :refer [info error]]
[babashka.fs :as fs]
[babashka.process :refer [shell]]
[modular.webserver.default :refer [letsencrypt-default https-default]]
))
[modular.webserver.default :refer [letsencrypt-default https-default]]))

(defn renew-cert [{:keys [path domain email]
:or {path (:path letsencrypt-default)}}]
Expand All @@ -31,7 +31,8 @@
"--config-dir" config-path
"--logs-dir" log-path)
]
(info "renewal out: " (-> r :out)) ;str/split-lines first
(info "renewal out: " ) ;str/split-lines first
(info "first line: " (-> r :out str/split-lines first))
r
)
))
Expand Down

0 comments on commit af5a34f

Please sign in to comment.