summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--propellor.cabal2
-rw-r--r--src/Propellor/Property/Localdir.hs (renamed from src/Propellor/Property/PropellorRepo.hs)4
-rw-r--r--src/Propellor/Spin.hs2
3 files changed, 5 insertions, 3 deletions
diff --git a/propellor.cabal b/propellor.cabal
index eb36728e..e1179b19 100644
--- a/propellor.cabal
+++ b/propellor.cabal
@@ -104,6 +104,7 @@ Library
Propellor.Property.Libvirt
Propellor.Property.List
Propellor.Property.LightDM
+ Propellor.Property.Localdir
Propellor.Property.Locale
Propellor.Property.Logcheck
Propellor.Property.Lvm
@@ -120,7 +121,6 @@ Library
Propellor.Property.Parted.Types
Propellor.Property.Partition
Propellor.Property.Postfix
- Propellor.Property.PropellorRepo
Propellor.Property.Prosody
Propellor.Property.Qemu
Propellor.Property.Reboot
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