propellor spin
This commit is contained in:
parent
e2512c198d
commit
fd1b037d45
|
@ -244,8 +244,9 @@ runningContainer cid@(ContainerId hn cn) image containerprops = containerDesc ci
|
|||
ident = ContainerIdent image hn cn runps
|
||||
|
||||
getrunningident :: IO (Maybe ContainerIdent)
|
||||
getrunningident = simpleShClient (namedPipe cid) "cat" [propellorIdent] $
|
||||
return . extractident
|
||||
getrunningident = simpleShClient (namedPipe cid) "cat" [propellorIdent] $ \rs -> do
|
||||
print (rs, extractident rs)
|
||||
return $ extractident rs
|
||||
|
||||
extractident :: [Resp] -> Maybe ContainerIdent
|
||||
extractident = headMaybe . catMaybes . map (readish :: String -> Maybe ContainerIdent) . catMaybes . map getStdout
|
||||
|
|
Loading…
Reference in New Issue