140a351fc5
There are two types of commands; those that access the repository and those that don't. Sorted.
45 lines
963 B
Haskell
45 lines
963 B
Haskell
{- git-annex command
|
|
-
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
-
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
-}
|
|
|
|
module Command.DropKey where
|
|
|
|
import Command
|
|
import qualified Annex
|
|
import LocationLog
|
|
import Types
|
|
import Content
|
|
import Messages
|
|
|
|
command :: [Command]
|
|
command = [repoCommand "dropkey" (paramRepeating paramKey) seek
|
|
"drops annexed content for specified keys"]
|
|
|
|
seek :: [CommandSeek]
|
|
seek = [withKeys start]
|
|
|
|
start :: CommandStartKey
|
|
start key = do
|
|
present <- inAnnex key
|
|
force <- Annex.getState Annex.force
|
|
if not present
|
|
then return Nothing
|
|
else if not force
|
|
then error "dropkey is can cause data loss; use --force if you're sure you want to do this"
|
|
else do
|
|
showStart "dropkey" (show key)
|
|
return $ Just $ perform key
|
|
|
|
perform :: Key -> CommandPerform
|
|
perform key = do
|
|
removeAnnex key
|
|
return $ Just $ cleanup key
|
|
|
|
cleanup :: Key -> CommandCleanup
|
|
cleanup key = do
|
|
logStatus key ValueMissing
|
|
return True
|
|
|