This is currently not installed anywhere, just built.
---
 .gitignore       |    1 +
 Makefile.am      |    2 +-
 htools/hconfd.hs |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 48 insertions(+), 1 deletions(-)
 create mode 100644 htools/hconfd.hs

diff --git a/.gitignore b/.gitignore
index 1b82e7c..207b7d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -101,6 +101,7 @@
 /htools/coverage
 
 /htools/htools
+/htools/hconfd
 /htools/test
 /htools/*.prof*
 /htools/*.stat
diff --git a/Makefile.am b/Makefile.am
index da43dcb..df8e012 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -346,7 +346,7 @@ docrst = \
        doc/upgrade.rst \
        doc/walkthrough.rst
 
-HS_PROGS = htools/htools
+HS_PROGS = htools/htools htools/hconfd
 HS_BIN_ROLES = hbal hscan hspace
 
 HS_ALL_PROGS = $(HS_PROGS) htools/test
diff --git a/htools/hconfd.hs b/htools/hconfd.hs
new file mode 100644
index 0000000..1ac173e
--- /dev/null
+++ b/htools/hconfd.hs
@@ -0,0 +1,46 @@
+{-| Ganeti configuration query daemon
+
+-}
+
+{-
+
+Copyright (C) 2009, 2011 Google Inc.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301, USA.
+
+-}
+
+module Main (main) where
+
+import qualified Ganeti.Confd.Server
+import Ganeti.Daemon
+import Ganeti.Runtime
+import qualified Ganeti.Constants as C
+
+-- | Options list and functions.
+options :: [OptType]
+options =
+  [ oShowHelp
+  , oShowVer
+  , oNoDaemonize
+  , oNoUserChecks
+  , oDebug
+  , oPort C.defaultConfdPort
+  ]
+
+-- | Main function.
+main :: IO ()
+main = genericMain GanetiConfd options Ganeti.Confd.Server.main
-- 
1.7.7.3

Reply via email to