git-annex/Command/DropKey.hs

42 lines
958 B
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010 Joey Hess <id@joeyh.name>
-
- 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
cmd :: Command
cmd = noCommit $
command "dropkey" SectionPlumbing
"drops annexed content for specified keys"
(paramRepeating paramKey)
(withParams seek)
seek :: CmdParams -> CommandSeek
seek = withKeys start
2010-11-11 18:54:52 -04:00
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"
2014-01-26 15:53:01 -04:00
showStart' "dropkey" key Nothing
next $ perform key
perform :: Key -> CommandPerform
perform key = lockContentForRemoval key $ \contentlock -> do
removeAnnex contentlock
2011-05-15 02:02:46 -04:00
next $ cleanup key
cleanup :: Key -> CommandCleanup
cleanup key = do
logStatus key InfoMissing
return True