htools: add confd daemon binary
authorIustin Pop <iustin@google.com>
Thu, 24 Nov 2011 14:05:18 +0000 (15:05 +0100)
committerIustin Pop <iustin@google.com>
Tue, 13 Mar 2012 13:12:34 +0000 (14:12 +0100)
This is currently not installed anywhere, just built.

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>

.gitignore
Makefile.am
htools/hconfd.hs [new file with mode: 0644]

index 1b82e7c..207b7d3 100644 (file)
 /htools/coverage
 
 /htools/htools
+/htools/hconfd
 /htools/test
 /htools/*.prof*
 /htools/*.stat
index 03448c3..d34ec33 100644 (file)
@@ -351,7 +351,7 @@ docrst = \
        doc/upgrade.rst \
        doc/walkthrough.rst
 
-HS_PROGS = htools/htools
+HS_PROGS = htools/htools htools/hconfd
 HS_BIN_ROLES = hbal hscan hspace hinfo
 
 HS_ALL_PROGS = $(HS_PROGS) htools/test
diff --git a/htools/hconfd.hs b/htools/hconfd.hs
new file mode 100644 (file)
index 0000000..1ac173e
--- /dev/null
@@ -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