From: Viktor M. <mih...@us...> - 2005-04-19 13:21:25
|
Update of /cvsroot/sblim/sfcb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19073 Modified Files: README configure.ac sfcb.spec.in Log Message: Bug 1181627. Index: README =================================================================== RCS file: /cvsroot/sblim/sfcb/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- README 9 Mar 2005 12:25:08 -0000 1.1.1.1 +++ README 19 Apr 2005 13:21:10 -0000 1.2 @@ -52,3 +52,57 @@ the date of this writing (March 2005) this version was not yet shipped with the usual distributions. Please make sure, you have the right version of libtool installed! + +Step by Step Instructions +------------------------- + +This is a description of the minimum number of steps to get sfcb up and +running: + +If you have received as tarball, invoke + tar xvjd sfcb-<version>.tar.bz2 + +If you want to check out from CVS, invoke (with CVSROOT set correctly) + cvs co sfcb + cd sfcb + cvs co mofc + ./autoconfiscate.sh + +In both cases continue with + ./configure + make + make install (need superuser rights) + make install-cimschema (superuser, need access to internet) + +Make sure that /usr/local/bin is in the path and /usr/local/lib either in +LD_LIBRARY_PATH or /etc/ld.so.conf and invoke + sfcbrepos -f (superuser, ignore error message) + +Start the sfcb by either invoking sfcbd or /usr/local/etc/init.d/sfcb start + +Execute a CIM client request, i.e. with SBLIM wbemcli: + wbemcli -dx ec http://localhost/root/cimv2 +you should see an output similar to: + + +To server: <?xml version="1.0" encoding="utf-8" ?> +<CIM CIMVERSION="2.0" DTDVERSION="2.0"> +<MESSAGE ID="4711" PROTOCOLVERSION="1.0"><SIMPLEREQ><IMETHODCALL NAME="EnumerateClasses"><LOCALNAMESPACEPATH><NAMESPACE NAME="root"></NAMESPACE><NAMESPACE NAME="cimv2"></NAMESPACE></LOCALNAMESPACEPATH> +<IPARAMVALUE NAME="ClassName"><CLASSNAME NAME=""/></IPARAMVALUE> +<IPARAMVALUE NAME="DeepInheritance"><VALUE>TRUE</VALUE></IPARAMVALUE> +<IPARAMVALUE NAME="LocalOnly"><VALUE>FALSE</VALUE></IPARAMVALUE> +<IPARAMVALUE NAME="IncludeQualifiers"><VALUE>FALSE</VALUE></IPARAMVALUE> +<IPARAMVALUE NAME="IncludeClassOrigin"><VALUE>TRUE</VALUE></IPARAMVALUE> +</IMETHODCALL></SIMPLEREQ> +</MESSAGE></CIM> +From server: <?xml version="1.0" encoding="utf-8" ?> +<CIM CIMVERSION="2.0" DTDVERSION="1.1"> +<MESSAGE ID="4711" PROTOCOLVERSION="1.0"> +<SIMPLERSP> +<IMETHODRESPONSE NAME="EnumerateClasses"> +<IRETURNVALUE> +</IRETURNVALUE> +</IMETHODRESPONSE> +</SIMPLERSP> +</MESSAGE> +</CIM> Index: sfcb.spec.in =================================================================== RCS file: /cvsroot/sblim/sfcb/sfcb.spec.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- sfcb.spec.in 1 Apr 2005 15:19:29 -0000 1.6 +++ sfcb.spec.in 19 Apr 2005 13:21:11 -0000 1.7 @@ -24,6 +24,8 @@ Summary: CIM Schema Files Copyright: (C) Distributed Management Task Force Group: Systems Management/Base +Requires: %{name} + %Description schema DMTF CIM Schema files that can be used with the Small Footprint CIM Broker. @@ -81,6 +83,10 @@ %postun /sbin/ldconfig +%post schema +sfcbrepos -f 2> /dev/null +exit 0 + %files schema %{_datadir}/%{name}/CIM Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/sfcb/configure.ac,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- configure.ac 1 Apr 2005 15:19:29 -0000 1.6 +++ configure.ac 19 Apr 2005 13:21:11 -0000 1.7 @@ -21,7 +21,7 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(Small Footprint CIM Broker, 0.8.7, sc...@de..., sfcb) +AC_INIT(Small Footprint CIM Broker, 0.8.7a, sc...@de..., sfcb) AC_CONFIG_SRCDIR([providerDrv.c]) AM_INIT_AUTOMAKE |