packages feed

language-puppet 0.10.0 → 0.10.1

raw patch · 2 files changed

+2/−2 lines, 2 files

Files

PuppetDB/TestDB.hs view
@@ -43,7 +43,7 @@ loadTestDB fp =     decodeFileEither fp >>= \case         Left (OtherParseException rr) -> return (S.Left (string (show rr)))-        Left rr -> trace ("Warning: could not decode " ++ fp ++ " :" ++ show rr) (S.Right <$> initTestDB)+        Left rr -> trace ("Warning: could not decode " ++ fp ++ " :" ++ show rr) (S.Right <$> genDBAPI (newDB & backingFile ?~ fp ))         Right x -> fmap S.Right (genDBAPI (x & backingFile ?~ fp ))  
language-puppet.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                language-puppet-version:             0.10.0+version:             0.10.1 synopsis:            Tools to parse and evaluate the Puppet DSL. description:         This is a set of tools that is supposed to fill all your Puppet needs : syntax checks, catalog compilation, PuppetDB queries, simulationg of complex interactions between nodes, Puppet master replacement, and more ! homepage:            http://lpuppet.banquise.net/