diff options
author | 2017-02-07 14:35:58 -0400 | |
---|---|---|
committer | 2017-02-07 14:55:58 -0400 | |
commit | dc0f824c1bc4c9aac1045894983a434eb26196ab (patch) | |
tree | a84543bd5ea46c8655fdd189f148f8bab9e48664 /Annex | |
parent | 2d5e728c407f5d3447365211a64b088700834787 (diff) |
add SetupStage parameter to RemoteType.setup
Most remotes have an idempotent setup that can be reused for
enableremote, but in a few cases, it needs to tell which, and whether
a UUID was provided to setup was used.
This is groundwork for making initremote be able to provide a UUID.
It should not change any behavior.
Note that it would be nice to make the UUID always be provided to setup,
and make setup not need to generate and return a UUID. What prevented
this simplification is Remote.Git.gitSetup, which needs to reuse the
UUID of the git remote when setting it up, and so has to return that
UUID.
This commit was sponsored by Thom May on Patreon.
Diffstat (limited to 'Annex')
-rw-r--r-- | Annex/SpecialRemote.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Annex/SpecialRemote.hs b/Annex/SpecialRemote.hs index 0fd24f023..3e2b1da0a 100644 --- a/Annex/SpecialRemote.hs +++ b/Annex/SpecialRemote.hs @@ -9,7 +9,7 @@ module Annex.SpecialRemote where import Annex.Common import Remote (remoteTypes, remoteMap) -import Types.Remote (RemoteConfig, RemoteConfigKey, typename, setup) +import Types.Remote (RemoteConfig, RemoteConfigKey, SetupStage(..), typename, setup) import Logs.Remote import Logs.Trust import qualified Git.Config @@ -79,7 +79,7 @@ autoEnable = do case (M.lookup nameKey c, findType c) of (Just name, Right t) -> whenM (canenable u) $ do showSideAction $ "Auto enabling special remote " ++ name - res <- tryNonAsync $ setup t (Just u) Nothing c def + res <- tryNonAsync $ setup t Enable (Just u) Nothing c def case res of Left e -> warning (show e) Right _ -> return () |