]> gitweb.fluxo.info Git - puppet-runit.git/commitdiff
added a simple readme
authorMarkus Strauss <Markus@ITstrauss.eu>
Sun, 30 Oct 2011 21:50:10 +0000 (17:50 -0400)
committerMarkus Strauss <Markus@ITstrauss.eu>
Sun, 30 Oct 2011 21:50:46 +0000 (17:50 -0400)
README.asciidoc [new file with mode: 0644]

diff --git a/README.asciidoc b/README.asciidoc
new file mode 100644 (file)
index 0000000..3dd0418
--- /dev/null
@@ -0,0 +1,27 @@
+README
+======
+Markus Strauss <markus@itstrauss.eu>
+v0.1, 2011-10-27
+
+This is a very basic module to manage the http://smarden.org/runit/[runit] service supervisor.
+
+Example Usage
+^^^^^^^^^^^^^
+
+[source,txt]
+---------------------------------------------------------------------
+class { 'runit': }
+
+# define a environment variable, placed under /etc/sv/diaspora_worker/env/QUEUE
+runit::env { 'QUEUE': service => 'diaspora_worker' }
+
+# define a service unter /etc/sv/diaspora_worker
+runit::service { "diaspora_worker":
+  user    => diaspora,                        # service user and group
+  group   => diaspora,
+  rundir  => '/var/rails/diaspora',           # service run directory
+  command => 'bundle exec rake resque:work',  # command to start the service
+  enable  => true,                            # enabling the service by
+                                              # linking it to /etc/services/
+}
+---------------------------------------------------------------------