2011-01-26 15:37:16 -04:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 12:50:09 -04:00
|
|
|
- Copyright 2010 Joey Hess <id@joeyh.name>
|
2011-01-26 15:37:16 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Semitrust where
|
|
|
|
|
|
|
|
import Command
|
2014-02-20 15:12:35 -04:00
|
|
|
import Types.TrustLevel
|
|
|
|
import Command.Trust (trustCommand)
|
2011-01-26 15:37:16 -04:00
|
|
|
|
2015-07-08 12:33:27 -04:00
|
|
|
cmd :: Command
|
2015-07-08 15:08:02 -04:00
|
|
|
cmd = command "semitrust" SectionSetup
|
|
|
|
"return repository to default trust level"
|
|
|
|
(paramRepeating paramRemote) (withParams seek)
|
2011-01-26 15:37:16 -04:00
|
|
|
|
2015-07-08 15:08:02 -04:00
|
|
|
seek :: CmdParams -> CommandSeek
|
2014-02-20 15:12:35 -04:00
|
|
|
seek = trustCommand "semitrust" SemiTrusted
|