git-annex/Command/DropKey.hs

40 lines
906 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 20:02:51 +00:00
import Common.Annex
import Command
import qualified Annex
2011-10-15 20:21:08 +00:00
import Logs.Location
2011-10-04 04:40:47 +00:00
import Annex.Content
import Types.Key
def :: [Command]
2012-09-16 00:46:38 +00:00
def = [noCommit $ command "dropkey" (paramRepeating paramKey) seek
"drops annexed content for specified keys"]
seek :: [CommandSeek]
2010-11-11 22:54:52 +00:00
seek = [withKeys start]
start :: Key -> CommandStart
2011-12-09 17:32:09 +00: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" (key2file key)
next $ perform key
perform :: Key -> CommandPerform
perform key = lockContent key $ do
removeAnnex key
2011-05-15 06:02:46 +00:00
next $ cleanup key
cleanup :: Key -> CommandCleanup
cleanup key = do
logStatus key InfoMissing
return True