summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-09-19 14:28:32 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-09-19 14:28:32 -0400
commit45a26175d64349b7c13c3bd0aa626947529ca2a2 (patch)
treef2e7b6473665f68325831fabdb87d0e6dec50f83
parent355ef8f3ea230b9ae0613bcea8c90203663ccd2a (diff)
renamed RsyncFile -> Rsync
-rw-r--r--Assistant/WebApp/Configurators/Ssh.hs2
-rw-r--r--Command/RecvKey.hs2
-rw-r--r--Command/SendKey.hs2
-rw-r--r--Remote/Git.hs2
-rw-r--r--Remote/Rsync.hs2
-rw-r--r--Utility/Rsync.hs (renamed from Utility/RsyncFile.hs)6
6 files changed, 8 insertions, 8 deletions
diff --git a/Assistant/WebApp/Configurators/Ssh.hs b/Assistant/WebApp/Configurators/Ssh.hs
index ac705de35..7fba8ff52 100644
--- a/Assistant/WebApp/Configurators/Ssh.hs
+++ b/Assistant/WebApp/Configurators/Ssh.hs
@@ -16,7 +16,7 @@ import Assistant.WebApp
import Assistant.WebApp.Types
import Assistant.WebApp.SideBar
import Utility.Yesod
-import Utility.RsyncFile (rsyncUrlIsShell)
+import Utility.Rsync (rsyncUrlIsShell)
import Logs.Remote
import Remote
diff --git a/Command/RecvKey.hs b/Command/RecvKey.hs
index 6db6ed41b..49f0d9e98 100644
--- a/Command/RecvKey.hs
+++ b/Command/RecvKey.hs
@@ -11,7 +11,7 @@ import Common.Annex
import Command
import CmdLine
import Annex.Content
-import Utility.RsyncFile
+import Utility.Rsync
import Logs.Transfer
import Command.SendKey (fieldTransfer)
diff --git a/Command/SendKey.hs b/Command/SendKey.hs
index aa6d5c4fc..6fcbf7075 100644
--- a/Command/SendKey.hs
+++ b/Command/SendKey.hs
@@ -10,7 +10,7 @@ module Command.SendKey where
import Common.Annex
import Command
import Annex.Content
-import Utility.RsyncFile
+import Utility.Rsync
import Logs.Transfer
import qualified Fields
diff --git a/Remote/Git.hs b/Remote/Git.hs
index 06e9ef1eb..626476c18 100644
--- a/Remote/Git.hs
+++ b/Remote/Git.hs
@@ -16,7 +16,7 @@ import Control.Exception.Extensible
import Common.Annex
import Utility.CopyFile
-import Utility.RsyncFile
+import Utility.Rsync
import Remote.Helper.Ssh
import Types.Remote
import qualified Git
diff --git a/Remote/Rsync.hs b/Remote/Rsync.hs
index ff3b473fa..3655ce483 100644
--- a/Remote/Rsync.hs
+++ b/Remote/Rsync.hs
@@ -19,7 +19,7 @@ import Annex.Content
import Remote.Helper.Special
import Remote.Helper.Encryptable
import Crypto
-import Utility.RsyncFile
+import Utility.Rsync
import Annex.Perms
type RsyncUrl = String
diff --git a/Utility/RsyncFile.hs b/Utility/Rsync.hs
index 5a9a256a9..5845ba703 100644
--- a/Utility/RsyncFile.hs
+++ b/Utility/Rsync.hs
@@ -1,11 +1,11 @@
-{- file copying with rsync
+{- various rsync stuff
-
- - Copyright 2010 Joey Hess <joey@kitenet.net>
+ - Copyright 2010-2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
-module Utility.RsyncFile where
+module Utility.Rsync where
import Data.String.Utils
import Data.List