propellor spin
This commit is contained in:
parent
b9c1bd87a3
commit
72b7b06525
|
@ -105,7 +105,11 @@ getSshTarget target hst
|
||||||
|
|
||||||
matchingtarget a = (==) target <$> inet_ntoa a
|
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
|
configip = case mapMaybe getIPAddr (S.toList (_dns (hostInfo hst))) of
|
||||||
[] -> Nothing
|
[] -> Nothing
|
||||||
|
|
Loading…
Reference in New Issue