-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The docs indicate that if one server in ssh-group has a failure, the others will continue. I think that should be configurable (I'd like the whole thing to crash in that case), but it should at least log a warning. The following code just logs "I'm on the server" then :ok
(ns test
(:require
[spire.modules :as spire]
[clojure.string :as string]))
(defn main []
(spire/ssh-group
[{:hostname "10.10.3.250" :username "ubuntu"}]
(spire/debug "I'm on the server")
(spire/debug (string/trim nil))
(spire/debug "All done"))
:ok)
(main)Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request