summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-12-31 15:14:45 +0100
committerAzul <azul@riseup.net>2012-12-31 15:19:35 +0100
commite38adf0a52743f03acf00fb71e816571558468eb (patch)
tree668be1c21efb6987e9a940d52ea50a4f082148d4
parentdbc8bac37054f6fea50bd3c39241bdcf808b0b3f (diff)
version 0.2.0 - use leap_ca_daemon now
-rw-r--r--README.md12
-rw-r--r--lib/leap_ca/version.rb2
2 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 8947ddc..e2393a4 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
LEAP Certificate Authority Daemon
---------------------------------------------------
-``leap_ca`` is a background daemon that generates x509 certificates as needed and stores them in CouchDB. You can run ``leap_ca`` on a machine that is not connected to a network, and then periodically connect to sync up the cert database.
+``leap_ca_daemon`` is a background daemon that generates x509 certificates as needed and stores them in CouchDB. You can run ``leap_ca`` on a machine that is not connected to a network, and then periodically connect to sync up the cert database.
* Its only interface with the outside world is a CouchDB connection (defaults to localhost).
* The daemon monitors changes to the database and fills it with x509 certs as needed.
@@ -39,20 +39,20 @@ Running
See if it worked:
- leap_ca run -- test/config/config.yaml
+ leap_ca_daemon run -- test/config/config.yaml
browse to http://localhost:5984/_utils
How you would run normally in production mode:
- leap_ca start
- leap_ca stop
+ leap_ca_daemon start
+ leap_ca_daemon stop
-See ``leap_ca --help`` for more options.
+See ``leap_ca_daemon --help`` for more options.
Configuration
---------------------
-``leap_ca`` reads the following configurations files, in this order:
+``leap_ca_daemon`` reads the following configurations files, in this order:
* ``$(leap_ca_source)/config/default_config.yaml``
* ``/etc/leap/leap_ca.yaml``
diff --git a/lib/leap_ca/version.rb b/lib/leap_ca/version.rb
index 3af1e72..dc8e4bb 100644
--- a/lib/leap_ca/version.rb
+++ b/lib/leap_ca/version.rb
@@ -1,4 +1,4 @@
module LeapCA
- VERSION = "0.1.0"
+ VERSION = "0.2.0"
REQUIRE_PATHS = ['lib']
end