summaryrefslogtreecommitdiff
path: root/src/Propellor
diff options
context:
space:
mode:
authorSean Whitton2019-04-03 07:49:03 -0700
committerJoey Hess2019-04-03 12:11:52 -0400
commit9d682a8340ce8b8ada18dd378a9869a71a279427 (patch)
treee85807269bb900e53f34d399f0adb87aa15f110b /src/Propellor
parent3baf3a03b764b0a61254af7fa175a427a5455790 (diff)
rename Propellor.Property.{PropellorRepo -> Localdir}
This is to accommodate a new property in that module which is about /usr/local/propellor, but not only about the git repo there. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/Propellor')
-rw-r--r--src/Propellor/Property/Localdir.hs (renamed from src/Propellor/Property/PropellorRepo.hs)4
-rw-r--r--src/Propellor/Spin.hs2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/Propellor/Property/PropellorRepo.hs b/src/Propellor/Property/Localdir.hs
index 825efdfd..5d8e2033 100644
--- a/src/Propellor/Property/PropellorRepo.hs
+++ b/src/Propellor/Property/Localdir.hs
@@ -1,6 +1,8 @@
{-# LANGUAGE DeriveDataTypeable #-}
-module Propellor.Property.PropellorRepo where
+-- | Properties to manipulate propellor's @/usr/local/propellor@ on spun hosts
+
+module Propellor.Property.Localdir where
import Propellor.Base
import Propellor.Git.Config
diff --git a/src/Propellor/Spin.hs b/src/Propellor/Spin.hs
index 1fb4d7e4..7f479f10 100644
--- a/src/Propellor/Spin.hs
+++ b/src/Propellor/Spin.hs
@@ -29,7 +29,7 @@ import Propellor.Gpg
import Propellor.Bootstrap
import Propellor.Types.CmdLine
import Propellor.Types.Info
-import Propellor.Property.PropellorRepo (OriginUrl(..))
+import Propellor.Property.Localdir (OriginUrl(..))
import qualified Propellor.Shim as Shim
import Utility.SafeCommand
import Utility.Process.NonConcurrent