summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Propellor/Spin.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Propellor/Spin.hs b/src/Propellor/Spin.hs
index a9a61c16..67fa7c58 100644
--- a/src/Propellor/Spin.hs
+++ b/src/Propellor/Spin.hs
@@ -105,7 +105,11 @@ getSshTarget target hst
matchingtarget a = (==) target <$> inet_ntoa a
- useip = return $ fromMaybe target configip
+ useip = case configip of
+ Nothing -> return target
+ Just ip -> do
+ warningMessage $ "DNS seems out of date for " ++ target ++ "; using IP address from configuration instead."
+ return ip
configip = case mapMaybe getIPAddr (S.toList (_dns (hostInfo hst))) of
[] -> Nothing