packages feed

git-annex-3.20110702: Command/ConfigList.hs

{- git-annex command
 -
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Command.ConfigList where

import Control.Monad.State (liftIO)

import Annex
import Command
import UUID

command :: [Command]
command = [standaloneCommand "configlist" paramNothing seek
		"outputs relevant git configuration"]

seek :: [CommandSeek]
seek = [withNothing start]

start :: CommandStartNothing
start = do
	g <- Annex.gitRepo
	u <- getUUID g
	liftIO $ putStrLn $ "annex.uuid=" ++ u
	stop