2011-12-02 19:22:43 -04:00
|
|
|
{- git-annex command
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Dead where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import Command
|
|
|
|
import qualified Remote
|
|
|
|
import Logs.Trust
|
2012-10-10 15:39:13 -04:00
|
|
|
import Logs.Group
|
|
|
|
|
|
|
|
import qualified Data.Set as S
|
2011-12-02 19:22:43 -04:00
|
|
|
|
|
|
|
def :: [Command]
|
|
|
|
def = [command "dead" (paramRepeating paramRemote) seek
|
2013-03-24 18:28:21 -04:00
|
|
|
SectionSetup "hide a lost repository"]
|
2011-12-02 19:22:43 -04:00
|
|
|
|
|
|
|
seek :: [CommandSeek]
|
|
|
|
seek = [withWords start]
|
|
|
|
|
|
|
|
start :: [String] -> CommandStart
|
|
|
|
start ws = do
|
|
|
|
let name = unwords ws
|
2013-06-18 15:41:19 -04:00
|
|
|
showStart "dead" name
|
2011-12-02 19:22:43 -04:00
|
|
|
u <- Remote.nameToUUID name
|
|
|
|
next $ perform u
|
|
|
|
|
|
|
|
perform :: UUID -> CommandPerform
|
|
|
|
perform uuid = do
|
2013-03-31 16:38:05 -04:00
|
|
|
markDead uuid
|
|
|
|
next $ return True
|
|
|
|
|
|
|
|
markDead :: UUID -> Annex ()
|
|
|
|
markDead uuid = do
|
2011-12-02 19:22:43 -04:00
|
|
|
trustSet uuid DeadTrusted
|
2012-10-10 15:39:13 -04:00
|
|
|
groupSet uuid S.empty
|