propellor/propellor.cabal

93 lines
2.3 KiB
Plaintext
Raw Normal View History

2014-03-30 06:37:45 +00:00
Name: propellor
2014-03-31 23:21:07 +00:00
Version: 0.2.0
2014-03-30 04:08:02 +00:00
Cabal-Version: >= 1.6
License: GPL
Maintainer: Joey Hess <joey@kitenet.net>
Author: Joey Hess
Stability: Stable
Copyright: 2014 Joey Hess
License-File: GPL
Build-Type: Simple
2014-03-30 20:31:45 +00:00
Homepage: http://joeyh.name/code/propellor/
2014-03-30 04:08:02 +00:00
Category: Utility
2014-03-31 03:37:54 +00:00
Extra-Source-Files:
README
TODO
2014-04-01 19:07:07 +00:00
CHANGELOG
2014-03-31 03:37:54 +00:00
Makefile
2014-04-01 19:07:07 +00:00
debian/changelog
2014-04-01 19:28:55 +00:00
debian/README
2014-03-30 07:49:01 +00:00
Synopsis: property-based host configuration management in haskell
2014-03-30 04:08:02 +00:00
Description:
2014-03-30 07:49:01 +00:00
Propellor enures that the system it's run in satisfies a list of
properties, taking action as necessary when a property is not yet met.
2014-03-31 03:37:54 +00:00
.
While Propellor can be installed from hackage, to customize and use it
you should fork its git repository and modify it from there:
git clone git://git.kitenet.net/propellor
2014-03-30 04:08:02 +00:00
2014-03-30 06:37:45 +00:00
Executable propellor
2014-03-31 03:59:07 +00:00
Main-Is: config.hs
GHC-Options: -Wall -threaded
2014-03-30 04:08:02 +00:00
Build-Depends: MissingH, directory, filepath, base >= 4.5, base < 5,
2014-03-30 23:10:32 +00:00
IfElse, process, bytestring, hslogger, unix-compat, ansi-terminal,
containers, network, async
2014-03-30 04:08:02 +00:00
if (! os(windows))
Build-Depends: unix
2014-03-31 03:37:54 +00:00
Library
GHC-Options: -Wall -threaded
2014-03-31 03:37:54 +00:00
Build-Depends: MissingH, directory, filepath, base >= 4.5, base < 5,
IfElse, process, bytestring, hslogger, unix-compat, ansi-terminal,
containers, network, async
2014-03-31 03:37:54 +00:00
if (! os(windows))
Build-Depends: unix
Exposed-Modules:
2014-03-31 03:55:59 +00:00
Propellor
2014-03-31 03:37:54 +00:00
Propellor.Property
Propellor.Property.Apt
Propellor.Property.Cmd
2014-03-31 05:29:47 +00:00
Propellor.Property.Cron
2014-03-31 03:37:54 +00:00
Propellor.Property.Docker
Propellor.Property.File
Propellor.Property.GitHome
Propellor.Property.Hostname
Propellor.Property.JoeySites
Propellor.Property.Network
Propellor.Property.Reboot
Propellor.Property.Ssh
Propellor.Property.Sudo
Propellor.Property.Tor
Propellor.Property.User
Propellor.CmdLine
2014-03-31 22:31:08 +00:00
Propellor.Message
2014-03-31 03:37:54 +00:00
Propellor.PrivData
2014-03-31 05:06:44 +00:00
Propellor.Engine
Propellor.SimpleSh
2014-03-31 03:37:54 +00:00
Propellor.Types
Other-Modules:
Utility.Applicative
Utility.Data
Utility.Directory
Utility.Env
Utility.Exception
Utility.FileMode
Utility.FileSystemEncoding
Utility.Misc
Utility.Monad
Utility.Path
2014-03-31 03:37:54 +00:00
Utility.PartialPrelude
Utility.PosixFiles
Utility.Process
Utility.SafeCommand
Utility.ThreadScheduler
2014-03-31 03:37:54 +00:00
Utility.Tmp
Utility.UserInfo
2014-03-31 03:37:54 +00:00
2014-03-30 04:08:02 +00:00
source-repository head
type: git
2014-03-30 06:37:45 +00:00
location: git://git.kitenet.net/propellor.git