git-annex/Command/DropKey.hs

39 lines
884 B
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.DropKey where
2011-10-05 16:02:51 -04:00
import Common.Annex
import Command
import qualified Annex
2011-10-15 16:21:08 -04:00
import Logs.Location
2011-10-04 00:40:47 -04:00
import Annex.Content
def :: [Command]
def = [oneShot $ command "dropkey" (paramRepeating paramKey) seek
"drops annexed content for specified keys"]
seek :: [CommandSeek]
2010-11-11 18:54:52 -04:00
seek = [withKeys start]
start :: Key -> CommandStart
2011-12-09 13:32:09 -04:00
start key = stopUnless (inAnnex key) $ do
unlessM (Annex.getState Annex.force) $
error "dropkey can cause data loss; use --force if you're sure you want to do this"
showStart "dropkey" (show key)
next $ perform key
perform :: Key -> CommandPerform
perform key = lockContent key $ do
removeAnnex key
2011-05-15 02:02:46 -04:00
next $ cleanup key
cleanup :: Key -> CommandCleanup
cleanup key = do
logStatus key InfoMissing
return True