diff options
author | Joey Hess <joey@kitenet.net> | 2011-08-16 20:49:54 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-08-16 20:49:54 -0400 |
commit | a55faff08fd9173edaf22a1de46cf7fafe89ebb7 (patch) | |
tree | 70af0671d3b927005e51021671bc4395046aa630 /Remote | |
parent | 4545a0e78cf675c6bbbcdd86b5c06bf99bb0c7e9 (diff) |
reorg Remote/*
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Bup.hs | 6 | ||||
-rw-r--r-- | Remote/Directory.hs | 4 | ||||
-rw-r--r-- | Remote/Helper/Encryptable.hs (renamed from Remote/Encryptable.hs) | 2 | ||||
-rw-r--r-- | Remote/Helper/Special.hs (renamed from Remote/Special.hs) | 2 | ||||
-rw-r--r-- | Remote/Helper/Ssh.hs (renamed from Remote/Ssh.hs) | 2 | ||||
-rw-r--r-- | Remote/Hook.hs | 4 | ||||
-rw-r--r-- | Remote/Rsync.hs | 4 | ||||
-rw-r--r-- | Remote/S3real.hs | 4 |
8 files changed, 14 insertions, 14 deletions
diff --git a/Remote/Bup.hs b/Remote/Bup.hs index 1023cda18..c82f84745 100644 --- a/Remote/Bup.hs +++ b/Remote/Bup.hs @@ -30,9 +30,9 @@ import Locations import Config import Utility import Messages -import Remote.Ssh -import Remote.Special -import Remote.Encryptable +import Remote.Helper.Ssh +import Remote.Helper.Special +import Remote.Helper.Encryptable import Crypto type BupRepo = String diff --git a/Remote/Directory.hs b/Remote/Directory.hs index 235f61300..fd227f85d 100644 --- a/Remote/Directory.hs +++ b/Remote/Directory.hs @@ -27,8 +27,8 @@ import Utility.CopyFile import Config import Content import Utility -import Remote.Special -import Remote.Encryptable +import Remote.Helper.Special +import Remote.Helper.Encryptable import Crypto remote :: RemoteType Annex diff --git a/Remote/Encryptable.hs b/Remote/Helper/Encryptable.hs index 66e1738ac..04041c655 100644 --- a/Remote/Encryptable.hs +++ b/Remote/Helper/Encryptable.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Remote.Encryptable where +module Remote.Helper.Encryptable where import qualified Data.Map as M import Control.Monad.State (liftIO) diff --git a/Remote/Special.hs b/Remote/Helper/Special.hs index d6f362ce3..c302a0ff5 100644 --- a/Remote/Special.hs +++ b/Remote/Helper/Special.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Remote.Special where +module Remote.Helper.Special where import qualified Data.Map as M import Data.Maybe diff --git a/Remote/Ssh.hs b/Remote/Helper/Ssh.hs index fe4e6dfc1..478b01881 100644 --- a/Remote/Ssh.hs +++ b/Remote/Helper/Ssh.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Remote.Ssh where +module Remote.Helper.Ssh where import Control.Monad.State (liftIO) diff --git a/Remote/Hook.hs b/Remote/Hook.hs index 87f86ffe4..ef52d0482 100644 --- a/Remote/Hook.hs +++ b/Remote/Hook.hs @@ -28,8 +28,8 @@ import Locations import Config import Content import Utility -import Remote.Special -import Remote.Encryptable +import Remote.Helper.Special +import Remote.Helper.Encryptable import Crypto import Messages diff --git a/Remote/Rsync.hs b/Remote/Rsync.hs index 953537609..eba67e3fd 100644 --- a/Remote/Rsync.hs +++ b/Remote/Rsync.hs @@ -26,8 +26,8 @@ import Locations import Config import Content import Utility -import Remote.Special -import Remote.Encryptable +import Remote.Helper.Special +import Remote.Helper.Encryptable import Crypto import Messages import Utility.RsyncFile diff --git a/Remote/S3real.hs b/Remote/S3real.hs index e4dcc2a71..456a77f0e 100644 --- a/Remote/S3real.hs +++ b/Remote/S3real.hs @@ -33,8 +33,8 @@ import UUID import Messages import Locations import Config -import Remote.Special -import Remote.Encryptable +import Remote.Helper.Special +import Remote.Helper.Encryptable import Crypto import Content import Utility.Base64 |