From 52e16b0bebe4455ae3154f561f75ecaa3c67fce6 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 8 Jul 2012 20:54:08 -0700 Subject: Add the puppet-concat module as a submodule for tests --- .gitmodules | 3 +++ spec/fixtures/modules/concat | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 spec/fixtures/modules/concat diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..033526f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "spec/fixtures/modules/concat"] + path = spec/fixtures/modules/concat + url = git://github.com/ripienaar/puppet-concat.git diff --git a/spec/fixtures/modules/concat b/spec/fixtures/modules/concat new file mode 160000 index 0000000..52dbf4a --- /dev/null +++ b/spec/fixtures/modules/concat @@ -0,0 +1 @@ +Subproject commit 52dbf4a61a0a47b82b5213def9fe19b7af47a498 -- cgit v1.2.3 From 83bfb1f1553f69047366192ae562b082772a3712 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 8 Jul 2012 20:54:55 -0700 Subject: Rename the README for fancy GitHub formatting --- README | 14 -------------- README.md | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index 76b6667..0000000 --- a/README +++ /dev/null @@ -1,14 +0,0 @@ -haproxy - -This haproxy uses storeconfigs to collect and realize balancer member servers -on a load balancer server. Currently Redhat family OSes are supported, but -support for other OS Families shouldn't be too difficult to merge in. Pull -requests accepted! - -License -------- -Apache 2.0 - -Contact -------- -Gary Larizza diff --git a/README.md b/README.md new file mode 100644 index 0000000..be7c60f --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# haproxy + +This haproxy uses storeconfigs to collect and realize balancer member servers +on a load balancer server. Currently Redhat family OSes are supported, but +support for other OS Families shouldn't be too difficult to merge in. Pull +requests accepted! + +## License + +Apache 2.0 + +## Contact + +Gary Larizza -- cgit v1.2.3 From 1bb2ef6b72a4e0f0cb22a6c9348a1c9c0b56ac54 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 8 Jul 2012 20:58:44 -0700 Subject: Add a Hacking section to the README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index be7c60f..9c1f90c 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,16 @@ on a load balancer server. Currently Redhat family OSes are supported, but support for other OS Families shouldn't be too difficult to merge in. Pull requests accepted! +## Hacking + +After cloning the repository, execute `git submodule update --init` to pull in +any dependencies needed to test the module locally. + +1. `git submodule update --init` +1. `rake spec` # To run the tests +1. Hack Hack Hack # Adding tests hopefully! +1. Commit and send a pull request! + ## License Apache 2.0 -- cgit v1.2.3