From 94d09dfd64eb027e2afe2715c3dee5196d807145 Mon Sep 17 00:00:00 2001 From: Joey Hess <joey@kitenet.net> Date: Mon, 31 Mar 2014 15:43:24 -0400 Subject: [PATCH] propellor spin --- Propellor/CmdLine.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Propellor/CmdLine.hs b/Propellor/CmdLine.hs index 7b82d28..e57d70b 100644 --- a/Propellor/CmdLine.hs +++ b/Propellor/CmdLine.hs @@ -164,12 +164,13 @@ privDataMarker :: String privDataMarker = "PRIVDATA " toMarked :: Marker -> String -> String -toMarked marker = unlines . map (marker ++) . lines +toMarked marker = intercalate "\n" . map (marker ++) . lines fromMarked :: Marker -> Marked -> Maybe String fromMarked marker s | null matches = Nothing - | otherwise = Just $ unlines $ map (drop len) matches + | otherwise = Just $ intercalate "\n" $ + map (drop len) matches where len = length marker matches = filter (marker `isPrefixOf`) $ lines s @@ -184,7 +185,7 @@ boot props = do makePrivDataDir maybe noop (writeFileProtected privDataLocal) $ fromMarked privDataMarker reply - case eitherToMaybe . B64.decode . BL.pack . s2w8 . takeWhile (/= '\n') =<< fromMarked keyringMarker reply of + case eitherToMaybe . B64.decode . BL.pack . s2w8 =<< fromMarked keyringMarker reply of Nothing -> noop Just d -> do writeFileProtected keyring ""